mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 09:54:02 +01:00
Fail attachment extraction on non-zero exit code.
This commit is contained in:
parent
bd545891c0
commit
e9c893f07e
1 changed files with 1 additions and 1 deletions
|
|
@ -216,7 +216,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||
|
||||
var failed = false;
|
||||
|
||||
if (exitCode == -1)
|
||||
if (exitCode != 0)
|
||||
{
|
||||
failed = true;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue