summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/MegaDebridEuHook.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/MegaDebridEuHook.py')
-rw-r--r--module/plugins/hooks/MegaDebridEuHook.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/module/plugins/hooks/MegaDebridEuHook.py b/module/plugins/hooks/MegaDebridEuHook.py
index 0de7b4dcf..04f0be86f 100644
--- a/module/plugins/hooks/MegaDebridEuHook.py
+++ b/module/plugins/hooks/MegaDebridEuHook.py
@@ -7,27 +7,27 @@ from module.plugins.internal.MultiHook import MultiHook
class MegaDebridEuHook(MultiHook):
__name__ = "MegaDebridEuHook"
__type__ = "hook"
- __version__ = "0.05"
+ __version__ = "0.06"
+ __status__ = "testing"
- __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"),
- ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ),
- ("revertfailed" , "bool" , "Revert to standard download if fails", True ),
- ("reload" , "bool" , "Reload plugin list" , True ),
- ("reloadinterval", "int" , "Reload interval in hours" , 12 )]
+ __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"),
+ ("pluginlist" , "str" , "Plugin list (comma separated)", "" ),
+ ("reload" , "bool" , "Reload plugin list" , True ),
+ ("reloadinterval", "int" , "Reload interval in hours" , 12 )]
__description__ = """Mega-debrid.eu hook plugin"""
__license__ = "GPLv3"
__authors__ = [("D.Ducatel", "dducatel@je-geek.fr")]
- def getHosters(self):
- reponse = self.getURL("http://www.mega-debrid.eu/api.php", get={'action': "getHosters"})
+ def get_hosters(self):
+ reponse = self.load("http://www.mega-debrid.eu/api.php", get={'action': "getHosters"})
json_data = json_loads(reponse)
if json_data['response_code'] == "ok":
host_list = [element[0] for element in json_data['hosters']]
else:
- self.logError(_("Unable to retrieve hoster list"))
- host_list = list()
+ self.log_error(_("Unable to retrieve hoster list"))
+ host_list = []
return host_list