diff options
Diffstat (limited to 'module/plugins/internal/XFSHoster.py')
-rw-r--r-- | module/plugins/internal/XFSHoster.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/internal/XFSHoster.py b/module/plugins/internal/XFSHoster.py index 99a091129..2e9cbceb2 100644 --- a/module/plugins/internal/XFSHoster.py +++ b/module/plugins/internal/XFSHoster.py @@ -14,7 +14,7 @@ from module.utils import html_unescape class XFSHoster(SimpleHoster): __name__ = "XFSHoster" __type__ = "hoster" - __version__ = "0.64" + __version__ = "0.65" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -217,7 +217,8 @@ class XFSHoster(SimpleHoster): m = re.search(self.WAIT_PATTERN, self.html) if m is not None: wait_time = int(m.group(1)) - self.set_wait(wait_time, False) + self.set_wait(wait_time) + self.set_reconnect(False) self.handle_captcha(inputs) self.wait() |