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
|
@ -53,7 +53,7 @@ class autoProcessMusic(object):
|
|||
remote_path = int(cfg.get("remote_path", 0))
|
||||
protocol = "https://" if ssl else "http://"
|
||||
status = int(status)
|
||||
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