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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -199,6 +199,7 @@
- [allesmi](https://github.com/allesmi)
- [ThunderClapLP](https://github.com/ThunderClapLP)
- [Shoham Peller](https://github.com/spellr)
- [theshoeshiner](https://github.com/theshoeshiner)
# Emby Contributors

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
{