diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-28 18:55:09 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-28 18:55:09 +0200 |
commit | ca5eb403dd6797a3517f6eb5aae7922f586c5c45 (patch) | |
tree | 881e2f896f4b356b8199f4d1c565efbf6abedd35 /module/plugins/internal/Hoster.py | |
parent | Fix https://github.com/pyload/pyload/issues/1578 (2) (diff) | |
download | pyload-ca5eb403dd6797a3517f6eb5aae7922f586c5c45.tar.xz |
Fix http://forum.pyload.org/viewtopic.php?f=12&t=4410
Diffstat (limited to 'module/plugins/internal/Hoster.py')
-rw-r--r-- | module/plugins/internal/Hoster.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py index f3b78a348..15344b86b 100644 --- a/module/plugins/internal/Hoster.py +++ b/module/plugins/internal/Hoster.py @@ -47,7 +47,7 @@ def create_getInfo(klass): class Hoster(Plugin): __name__ = "Hoster" __type__ = "hoster" - __version__ = "0.07" + __version__ = "0.08" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -448,7 +448,7 @@ class Hoster(Plugin): return self.last_download - def check_download(self, rules, delete=False, file_size=0, size_tolerance=2048, read_size=100000): + def check_download(self, rules, delete=False, file_size=0, size_tolerance=1024, read_size=100000): """ Checks the content of the last downloaded file, re match is saved to `lastCheck` |