From f125dd3eda49c9aff759c59bc9c30886eb18fedc Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 19 Oct 2015 09:58:52 +0200 Subject: Fix https://github.com/pyload/pyload/issues/2055 --- module/plugins/internal/SimpleCrypter.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'module/plugins/internal/SimpleCrypter.py') diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 231fb8810..8692d09ef 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -10,7 +10,7 @@ from module.plugins.internal.utils import replace_patterns, set_cookie, set_cook class SimpleCrypter(Crypter): __name__ = "SimpleCrypter" __type__ = "crypter" - __version__ = "0.72" + __version__ = "0.73" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -107,12 +107,6 @@ class SimpleCrypter(Crypter): except Exception: pass - if pyreq.code in (404, 410): - info['status'] = 1 - - elif pyreq.code == 503: - info['status'] = 6 - if html: if cls.OFFLINE_PATTERN and re.search(cls.OFFLINE_PATTERN, html) is not None: info['status'] = 1 -- cgit v1.2.3