mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
fix failure condition from SABnzbd. Fixes #1131
This commit is contained in:
parent
c14618ebdd
commit
c9c5fd5045
3 changed files with 3 additions and 3 deletions
|
@ -80,7 +80,7 @@ class autoProcessTV(object):
|
|||
delete_on = int(cfg.get("delete_on", 0))
|
||||
ignore_subs = int(cfg.get("ignore_subs", 0))
|
||||
status = int(failed)
|
||||
if status == 1 and core.NOEXTRACTFAILED:
|
||||
if status > 0 and core.NOEXTRACTFAILED:
|
||||
extract = 0
|
||||
else:
|
||||
extract = int(cfg.get("extract", 0))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue