mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 22:03:13 -07:00
Merge pull request #897 from kri99/SickRage
Update SickRage dir. Fixes #895
This commit is contained in:
commit
12bedbdb5a
2 changed files with 6 additions and 4 deletions
|
@ -52,14 +52,16 @@ FORKS = {}
|
||||||
FORK_DEFAULT = "default"
|
FORK_DEFAULT = "default"
|
||||||
FORK_FAILED = "failed"
|
FORK_FAILED = "failed"
|
||||||
FORK_FAILED_TORRENT = "failed-torrent"
|
FORK_FAILED_TORRENT = "failed-torrent"
|
||||||
|
FORK_SICKRAGETV = "sickragetv"
|
||||||
FORK_SICKRAGE = "sickrage"
|
FORK_SICKRAGE = "sickrage"
|
||||||
FORKS[FORK_DEFAULT] = {"dir": None}
|
FORKS[FORK_DEFAULT] = {"dir": None}
|
||||||
FORKS[FORK_FAILED] = {"dirName": None, "failed": None}
|
FORKS[FORK_FAILED] = {"dirName": None, "failed": None}
|
||||||
FORKS[FORK_FAILED_TORRENT] = {"dir": None, "failed": None, "process_method": None}
|
FORKS[FORK_FAILED_TORRENT] = {"dir": None, "failed": None, "process_method": None}
|
||||||
|
FORKS[FORK_SICKRAGETV] = {"proc_dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
|
||||||
FORKS[FORK_SICKRAGE] = {"dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
|
FORKS[FORK_SICKRAGE] = {"dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
|
||||||
ALL_FORKS = {"dir": None, "dirName": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
|
ALL_FORKS = {"dir": None, "dirName": None, "proc_dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None}
|
||||||
SICKBEARD_FAILED = [FORK_FAILED, FORK_FAILED_TORRENT, FORK_SICKRAGE]
|
SICKBEARD_FAILED = [FORK_FAILED, FORK_FAILED_TORRENT, FORK_SICKRAGETV, FORK_SICKRAGE]
|
||||||
SICKBEARD_TORRENT = [FORK_FAILED_TORRENT, FORK_SICKRAGE]
|
SICKBEARD_TORRENT = [FORK_FAILED_TORRENT, FORK_SICKRAGETV, FORK_SICKRAGE]
|
||||||
|
|
||||||
# NZBGet Exit Codes
|
# NZBGet Exit Codes
|
||||||
NZBGET_POSTPROCESS_PARCHECK = 92
|
NZBGET_POSTPROCESS_PARCHECK = 92
|
||||||
|
|
|
@ -200,7 +200,7 @@ class autoProcessTV:
|
||||||
if param == "failed":
|
if param == "failed":
|
||||||
fork_params[param] = failed
|
fork_params[param] = failed
|
||||||
|
|
||||||
if param in ["dirName", "dir"]:
|
if param in ["dirName", "dir", "proc_dir"]:
|
||||||
fork_params[param] = dirName
|
fork_params[param] = dirName
|
||||||
if remote_path:
|
if remote_path:
|
||||||
fork_params[param] = remoteDir(dirName)
|
fork_params[param] = remoteDir(dirName)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue