Fix issue with EncodedRecorder streams not showing up under "Active Recordings" (#14357)

This commit is contained in:
Dan Watson
2025-07-22 19:13:01 -04:00
committed by GitHub
parent a148a4ad02
commit dddeea1f7b
2 changed files with 5 additions and 0 deletions

View File

@@ -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
{