diff --git a/core/__init__.py b/core/__init__.py index 317809a2..136e4193 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -88,6 +88,7 @@ FORK_SICKRAGE = 'SickRage' FORK_SICKCHILL = 'SickChill' FORK_SICKBEARD_API = 'SickBeard-api' FORK_MEDUSA = 'Medusa' +FORK_MEDUSA_API = 'Medusa-api' FORK_SICKGEAR = 'SickGear' FORK_STHENO = 'Stheno' @@ -99,6 +100,7 @@ FORKS = { FORK_SICKCHILL: {'proc_dir': None, 'failed': None, 'process_method': None, 'force': None, 'delete_on': None, 'force_next': None}, FORK_SICKBEARD_API: {'path': None, 'failed': None, 'process_method': None, 'force_replace': None, 'return_data': None, 'type': None, 'delete': None, 'force_next': None}, FORK_MEDUSA: {'proc_dir': None, 'failed': None, 'process_method': None, 'force': None, 'delete_on': None, 'ignore_subs': None}, + FORK_MEDUSA_API: {'path': None, 'failed': None, 'process_method': None, 'force_replace': None, 'return_data': None, 'type': None, 'delete_files': None, 'is_priority': None}, FORK_SICKGEAR: {'dir': None, 'failed': None, 'process_method': None, 'force': None}, FORK_STHENO: {"proc_dir": None, "failed": None, "process_method": None, "force": None, "delete_on": None, "ignore_subs": None} } diff --git a/core/forks.py b/core/forks.py index ede32f9c..be81a965 100644 --- a/core/forks.py +++ b/core/forks.py @@ -22,6 +22,7 @@ def auto_fork(section, input_category): web_root = cfg.get('web_root', '') replace = { 'medusa': 'Medusa', + 'medusa-api': 'Medusa-api', 'sickbeard-api': 'SickBeard-api', 'sickgear': 'SickGear', 'sickchill': 'SickChill',