summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/SimplydebridCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/SimplydebridCom.py')
-rw-r--r--module/plugins/hooks/SimplydebridCom.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/module/plugins/hooks/SimplydebridCom.py b/module/plugins/hooks/SimplydebridCom.py
index 48568f870..13c957294 100644
--- a/module/plugins/hooks/SimplydebridCom.py
+++ b/module/plugins/hooks/SimplydebridCom.py
@@ -1,22 +1,21 @@
# -*- coding: utf-8 -*-
-from module.network.RequestFactory import getURL
from module.plugins.internal.MultiHook import MultiHook
class SimplydebridCom(MultiHook):
__name__ = "SimplydebridCom"
__type__ = "hook"
- __version__ = "0.02"
+ __version__ = "0.03"
- __config__ = [("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
- ("hosterList", "str", "Hoster list (comma separated)", "")]
+ __config__ = [("mode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
+ ("pluginlist", "str", "Hoster list (comma separated)", "")]
__description__ = """Simply-Debrid.com hook plugin"""
__license__ = "GPLv3"
__authors__ = [("Kagenoshin", "kagenoshin@gmx.ch")]
- def getHoster(self):
- page = getURL("http://simply-debrid.com/api.php", get={'list': 1})
+ def getHosters(self):
+ page = self.getURL("http://simply-debrid.com/api.php", get={'list': 1})
return [x.strip() for x in page.rstrip(';').replace("\"", "").split(";")]