diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-30 14:38:24 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-30 14:38:24 +0200 |
commit | 06da88c774278bdb3fc270fe13e92c7b2aaec685 (patch) | |
tree | 3bdcb95e2e11c038640c4d8a663299c1d24be2aa /module | |
parent | Fix get_code call in captcha hooks (diff) | |
parent | [FilecryptCc.py] Fix https://github.com/pyload/pyload/issues/1614 (diff) | |
download | pyload-06da88c774278bdb3fc270fe13e92c7b2aaec685.tar.xz |
Merge pull request #1615 from zapp-brannigan/patch-3
[FilecryptCc.py] Fix https://github.com/pyload/pyload/issues/1614
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index af4e3dfb1..ff2620b53 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -16,7 +16,7 @@ from module.plugins.captcha.ReCaptcha import ReCaptcha class FilecryptCc(Crypter): __name__ = "FilecryptCc" __type__ = "crypter" - __version__ = "0.17" + __version__ = "0.18" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' @@ -68,7 +68,10 @@ class FilecryptCc(Crypter): self.log_info(_("Found %d mirrors") % len(mirror)) for i in mirror[1:]: - self.site_with_links = self.site_with_links + self.load(i).decode("utf-8", "replace") + try: + self.site_with_links = self.site_with_links + self.load(i).decode("utf-8", "replace") + except: + self.site_with_links = self.site_with_links + self.load(i) def handle_password_protection(self): |