From bb938a82b500e1c9a46888783ba267a2799d9f36 Mon Sep 17 00:00:00 2001 From: Nitzo Date: Thu, 25 Feb 2016 23:50:48 +0200 Subject: fix #2359 --- module/plugins/internal/SimpleCrypter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/internal/SimpleCrypter.py') diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index a3dd44450..88a999d5e 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -11,7 +11,7 @@ from module.plugins.internal.misc import parse_name, replace_patterns class SimpleCrypter(Crypter): __name__ = "SimpleCrypter" __type__ = "crypter" - __version__ = "0.83" + __version__ = "0.84" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -95,7 +95,7 @@ class SimpleCrypter(Crypter): info['error'] = "missing url" info['status'] = 1 - elif info['status'] == 3: + elif info['status'] in (3, 7): try: html = get_url(url, cookies=cls.COOKIES, decode=cls.TEXT_ENCODING) -- cgit v1.2.3