add SeriesStudioInfo object

This commit is contained in:
Luke Pulverenti
2016-12-08 00:58:38 -05:00
parent 21816ff63e
commit c2da52914c
5 changed files with 37 additions and 4 deletions

View File

@@ -1594,7 +1594,17 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
private void Process_Exited(object sender, EventArgs e)
{
((IProcess)sender).Dispose();
var process = (IProcess)sender;
try
{
_logger.Info("Recording post-processing script completed with exit code {0}", process.ExitCode);
}
catch
{
}
process.Dispose();
}
private async Task SaveRecordingImage(string recordingPath, LiveTvProgram program, ItemImageInfo image)