diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-18 16:07:21 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-18 16:07:21 +0100 |
commit | 4e9c8f7ab1269966a9eac9e1b6363f5458f9f970 (patch) | |
tree | 82f54383c4f5a341ff43c06bb51e6309987c22ad /module/plugins/hoster/SimplydebridCom.py | |
parent | Update account plugins (diff) | |
download | pyload-4e9c8f7ab1269966a9eac9e1b6363f5458f9f970.tar.xz |
Update checkFile routine in some hoster plugins
Diffstat (limited to 'module/plugins/hoster/SimplydebridCom.py')
-rw-r--r-- | module/plugins/hoster/SimplydebridCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/SimplydebridCom.py b/module/plugins/hoster/SimplydebridCom.py index 1b8ff11b2..8fa756606 100644 --- a/module/plugins/hoster/SimplydebridCom.py +++ b/module/plugins/hoster/SimplydebridCom.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class SimplydebridCom(SimpleHoster): __name__ = "SimplydebridCom" __type__ = "hoster" - __version__ = "0.11" + __version__ = "0.12" __pattern__ = r'http://(?:www\.)?\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/sd\.php/*' @@ -55,6 +55,8 @@ class SimplydebridCom(SimpleHoster): def checkFile(self): + super(SimplydebridCom, self).checkFile() + check = self.checkDownload({"bad1": "No address associated with hostname", "bad2": "<html"}) if check == "bad1" or check == "bad2": |