diff options
Diffstat (limited to 'module/plugins/crypter/ShareLinksBiz.py')
-rw-r--r-- | module/plugins/crypter/ShareLinksBiz.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/crypter/ShareLinksBiz.py b/module/plugins/crypter/ShareLinksBiz.py index 407d2ff56..fef10b7f1 100644 --- a/module/plugins/crypter/ShareLinksBiz.py +++ b/module/plugins/crypter/ShareLinksBiz.py @@ -106,10 +106,11 @@ class ShareLinksBiz(Crypter): # Resolve captcha
href = self._resolveCoords(coords, captchaMap)
- if href == None:
+ if href is None:
self.log.debug("%s: Invalid captcha resolving, retrying" % self.__name__)
self.invalidCaptcha()
- self.wait(5)
+ self.setWait(5, False)
+ self.wait()
self.retry()
url = self.baseUrl + href
self.html = self.load(url)
|