diff options
author | stickell <l.stickell@yahoo.it> | 2014-05-16 17:05:50 +0200 |
---|---|---|
committer | stickell <l.stickell@yahoo.it> | 2014-05-16 17:05:50 +0200 |
commit | 91b9d2b4c2f29385d6d9155325b51af9ee22048c (patch) | |
tree | b6dafefa75d9d4489b14e522a2f3724778178668 /module/plugins/hoster/ShareonlineBiz.py | |
parent | [UpdateManager] Using the new platform (diff) | |
parent | Update ShareonlineBiz.py (diff) | |
download | pyload-91b9d2b4c2f29385d6d9155325b51af9ee22048c.tar.xz |
Merge pull request #617 from stefanos/patch-9
Update ShareonlineBiz
Diffstat (limited to 'module/plugins/hoster/ShareonlineBiz.py')
-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") |