mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
Set EnableRaisingEvents to true for processes that require it
This commit is contained in:
parent
2e9a3d45c2
commit
aafed63c3f
1 changed files with 4 additions and 2 deletions
|
|
@ -694,7 +694,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
FileName = FFMpegPath,
|
||||
Arguments = args,
|
||||
IsHidden = true,
|
||||
ErrorDialog = false
|
||||
ErrorDialog = false,
|
||||
EnableRaisingEvents = true
|
||||
});
|
||||
|
||||
_logger.LogDebug("{0} {1}", process.StartInfo.FileName, process.StartInfo.Arguments);
|
||||
|
|
@ -816,7 +817,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
FileName = FFMpegPath,
|
||||
Arguments = args,
|
||||
IsHidden = true,
|
||||
ErrorDialog = false
|
||||
ErrorDialog = false,
|
||||
EnableRaisingEvents = true
|
||||
});
|
||||
|
||||
_logger.LogInformation(process.StartInfo.FileName + " " + process.StartInfo.Arguments);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue