diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 10:13:02 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 10:13:02 +0200 |
commit | 6b79a4f22e774b40f432e9961cc6410bebacc5ff (patch) | |
tree | fcab3a7947ceda72dc25e261fcb35629b0aca8ed | |
parent | [UnSkipOnFail] Typo (2) (diff) | |
parent | Update FilecryptCc.py (diff) | |
download | pyload-6b79a4f22e774b40f432e9961cc6410bebacc5ff.tar.xz |
Merge pull request #1365 from zapp-brannigan/patch-1
[FilecryptCc.py] Fix circle captcha
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index baea8886b..9dd4f665d 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -14,7 +14,7 @@ from module.plugins.internal.CaptchaService import ReCaptcha class FilecryptCc(Crypter): __name__ = "FilecryptCc" __type__ = "crypter" - __version__ = "0.11" + __version__ = "0.12" __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' @@ -98,9 +98,7 @@ class FilecryptCc(Crypter): elif m2: #: circle captcha self.logDebug("Captcha-URL: %s" % m2.group(1)) - captcha_code = self.decryptCaptcha(urljoin("http://filecrypt.cc", m2.group(1)), - forceUser=True, - imgtype="gif", + captcha_code = self.decryptCaptcha('https://www.filecrypt.cc/captcha/circle.php?c=abc', result_type='positional') self.siteWithLinks = self.load(self.pyfile.url, |