mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 11:28:27 +01:00
update use of shellexecute
This commit is contained in:
@@ -1573,7 +1573,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
||||
ErrorDialog = false,
|
||||
FileName = options.RecordingPostProcessor,
|
||||
IsHidden = true,
|
||||
UseShellExecute = true
|
||||
UseShellExecute = false
|
||||
});
|
||||
|
||||
_logger.Info("Running recording post processor {0} {1}", process.StartInfo.FileName, process.StartInfo.Arguments);
|
||||
|
||||
@@ -213,7 +213,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings
|
||||
{
|
||||
ScheduleDirect.Station station;
|
||||
|
||||
if (channelPair.TryGetValue(channelNumber, out station))
|
||||
if (!string.IsNullOrWhiteSpace(channelNumber) && channelPair.TryGetValue(channelNumber, out station))
|
||||
{
|
||||
return station;
|
||||
}
|
||||
|
||||
@@ -149,8 +149,8 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
||||
|
||||
}
|
||||
},
|
||||
RequiresOpening = false,
|
||||
RequiresClosing = false,
|
||||
RequiresOpening = true,
|
||||
RequiresClosing = true,
|
||||
|
||||
ReadAtNativeFramerate = false,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user