mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-31 14:33:54 -04:00
Fix issue with EncodedRecorder streams not showing up under "Active Recordings" (#14357)
This commit is contained in:
parent
a148a4ad02
commit
dddeea1f7b
@ -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
|
||||
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user