diff options
| author | Dan Watson <2922868+theshoeshiner@users.noreply.github.com> | 2025-07-22 19:13:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 17:13:01 -0600 |
| commit | dddeea1f7bff45812921eafc113b3b1c5b479054 (patch) | |
| tree | 19e7f44d82d84651c37a56771f95466bc074cd7e /src | |
| parent | a148a4ad026ee33aacdb34e4fdc997f0b4eede56 (diff) | |
Fix issue with EncodedRecorder streams not showing up under "Active Recordings" (#14357)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Jellyfin.LiveTv/IO/EncodedRecorder.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Jellyfin.LiveTv/IO/EncodedRecorder.cs b/src/Jellyfin.LiveTv/IO/EncodedRecorder.cs index c04954207..be7ff5297 100644 --- a/src/Jellyfin.LiveTv/IO/EncodedRecorder.cs +++ b/src/Jellyfin.LiveTv/IO/EncodedRecorder.cs @@ -73,6 +73,10 @@ namespace Jellyfin.LiveTv.IO { _targetPath = targetFile; Directory.CreateDirectory(Path.GetDirectoryName(targetFile)); + if (!File.Exists(targetFile)) + { + FileHelper.CreateEmpty(targetFile); + } var processStartInfo = new ProcessStartInfo { |
