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/OverLoadMe.py | |
parent | Update account plugins (diff) | |
download | pyload-4e9c8f7ab1269966a9eac9e1b6363f5458f9f970.tar.xz |
Update checkFile routine in some hoster plugins
Diffstat (limited to 'module/plugins/hoster/OverLoadMe.py')
-rw-r--r-- | module/plugins/hoster/OverLoadMe.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/OverLoadMe.py b/module/plugins/hoster/OverLoadMe.py index 815313dd1..2ac1d755b 100644 --- a/module/plugins/hoster/OverLoadMe.py +++ b/module/plugins/hoster/OverLoadMe.py @@ -13,7 +13,7 @@ from module.utils import parseFileSize class OverLoadMe(SimpleHoster): __name__ = "OverLoadMe" __type__ = "hoster" - __version__ = "0.03" + __version__ = "0.04" __pattern__ = r'https?://.*overload\.me.*' @@ -72,6 +72,8 @@ class OverLoadMe(SimpleHoster): def checkFile(self): + super(OverLoadMe, self).checkFile() + check = self.checkDownload( {"error": "<title>An error occured while processing your request</title>"}) |