diff options
author | stefanos <antispam-github-com@trash-mail.com> | 2014-05-15 16:36:47 +0200 |
---|---|---|
committer | stefanos <antispam-github-com@trash-mail.com> | 2014-05-15 16:36:47 +0200 |
commit | c502357799c8ba64f78f80cd29a48c8ecc91a3d7 (patch) | |
tree | 43b3f5554fa6c6e77eec634e809b7ec06ab5e2d4 /module/plugins/hoster | |
parent | [XFileSharingPro] Fixed premium mode (diff) | |
download | pyload-c502357799c8ba64f78f80cd29a48c8ecc91a3d7.tar.xz |
Update ShareonlineBiz.py
captcha feedback (update)
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index d3aeafc84..a5bd9c250 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -39,7 +39,7 @@ class ShareonlineBiz(Hoster): __name__ = "ShareonlineBiz" __type__ = "hoster" __pattern__ = r'https?://(?:www\.)?(share-online\.biz|egoshare\.com)/(download.php\?id=|dl/)(?P<ID>\w+)' - __version__ = "0.39" + __version__ = "0.40" __description__ = """Shareonline.biz hoster plugin""" __author_name__ = ("spoob", "mkaay", "zoidberg", "Walter Purcaro") __author_mail__ = ("spoob@pyload.org", "mkaay@mkaay.de", "zoidberg@mujmail.cz", "vuolter@gmail.com") @@ -115,8 +115,12 @@ class ShareonlineBiz(Hoster): 'recaptcha_response_field': response}) if not response == '0': + self.correctCaptcha() break + else: + self.invalidCaptcha() else: + self.invalidCaptcha() self.fail("No valid captcha solution received") download_url = response.decode("base64") |