summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-28 01:35:32 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-28 01:35:32 +0100
commit2b079bd4ba0f2c0b03b73378274ec4f624b48416 (patch)
tree9adc3bc0000764548c140eb4497d180f0a9554a1
parent[RealdebridCom] Fix __pattern__ (thx titodark) (diff)
parentUpdate LinkCryptWs.py (diff)
downloadpyload-2b079bd4ba0f2c0b03b73378274ec4f624b48416.tar.xz
Merge pull request #981 from Gummibaer/patch-2
Update LinkCryptWs.py
-rw-r--r--module/plugins/crypter/LinkCryptWs.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/plugins/crypter/LinkCryptWs.py b/module/plugins/crypter/LinkCryptWs.py
index 835a549b2..a2afce4dc 100644
--- a/module/plugins/crypter/LinkCryptWs.py
+++ b/module/plugins/crypter/LinkCryptWs.py
@@ -15,7 +15,7 @@ from module.utils import html_unescape
class LinkCryptWs(Crypter):
__name__ = "LinkCryptWs"
__type__ = "crypter"
- __version__ = "0.07"
+ __version__ = "0.08"
__pattern__ = r'http://(?:www\.)?linkcrypt\.ws/(dir|container)/(?P<ID>\w+)'
@@ -57,7 +57,7 @@ class LinkCryptWs(Crypter):
self.offline()
if self.isKeyCaptchaProtected():
- self.retry(4, 30, _("Can't handle Key-Captcha"))
+ self.retry(8, 15, _("Can't handle Key-Captcha"))
if self.isCaptchaProtected():
self.captcha = True
@@ -115,10 +115,9 @@ class LinkCryptWs(Crypter):
def isKeyCaptchaProtected(self):
- if re.search(r'Key[ -]', self.html, re.I):
+ if(re.search(r'<br />If the folder does not open after klick on <b>Enter Folder</ b>', self.html, re.I)):
return True
- else:
- return False
+ return False
def unlockPasswordProtection(self):