diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-11 14:22:45 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-11 14:22:45 +0100 |
commit | 6f36b6314cecb7ff32e4f038751a18b7d4abd3d2 (patch) | |
tree | df92d01840809f1733d179c52d0be4d5901e0137 /module/plugins/hoster/FilerNet.py | |
parent | Merge pull request #1247 from sebdelsol/patch-3 (diff) | |
download | pyload-6f36b6314cecb7ff32e4f038751a18b7d4abd3d2.tar.xz |
[SimpleHoster] Fix https://github.com/pyload/pyload/issues/1248
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
-rw-r--r-- | module/plugins/hoster/FilerNet.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py index b8a97d6a1..a37decb69 100644 --- a/module/plugins/hoster/FilerNet.py +++ b/module/plugins/hoster/FilerNet.py @@ -16,7 +16,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class FilerNet(SimpleHoster): __name__ = "FilerNet" __type__ = "hoster" - __version__ = "0.18" + __version__ = "0.19" __pattern__ = r'https?://(?:www\.)?filer\.net/get/\w+' @@ -63,10 +63,4 @@ class FilerNet(SimpleHoster): self.invalidCaptcha() - def checkFile(self, rules={}): - if self.checkDownload({'Html file': re.compile(r'\A\s*<!DOCTYPE html')}): - self.offline() - return super(FilerNet, self).checkFile(rules) - - getInfo = create_getInfo(FilerNet) |