diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-07-29 17:56:30 +0200 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-07-29 17:56:30 +0200 |
commit | 9fbca54a0dcfa2572ff383529c70603e70af835b (patch) | |
tree | 66e513558eda7efedaf313e2d5d3a7265ac9374b /module | |
parent | [Captcha9Kw] use semicolon instead of colon as a separator for hoster_options... (diff) | |
download | pyload-9fbca54a0dcfa2572ff383529c70603e70af835b.tar.xz |
[Captcha9Kw] Bypass #1996 (2)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/Captcha9Kw.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/Captcha9Kw.py b/module/plugins/hooks/Captcha9Kw.py index 7918eb5b1..3fbd05764 100644 --- a/module/plugins/hooks/Captcha9Kw.py +++ b/module/plugins/hooks/Captcha9Kw.py @@ -14,7 +14,7 @@ from module.plugins.internal.misc import threaded class Captcha9Kw(Addon): __name__ = "Captcha9Kw" __type__ = "hook" - __version__ = "0.36" + __version__ = "0.37" __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , False ), @@ -24,7 +24,7 @@ class Captcha9Kw(Addon): ("captchapermin" , "int" , "Captcha per minute" , "9999" ), ("prio" , "int" , "Priority (max 10)(cost +0 -> +10 credits)" , "0" ), ("queue" , "int" , "Max. Queue (max 999)" , "50" ), - ("hoster_options", "str" , "Hoster options (format pluginname;prio=1;selfsolve=1;confirm=1;timeout=900|...)", ""), + ("hoster_options", "str" , "Hoster options (format pluginname;prio 1;selfsolve 1;confirm 1;timeout 900|...)", ""), ("selfsolve" , "bool" , "Selfsolve (manually solve your captcha in your 9kw client if active)" , "0" ), ("passkey" , "password", "API key" , "" ), ("timeout" , "int" , "Timeout in seconds (min 60, max 3999)" , "900" )] @@ -85,7 +85,7 @@ class Captcha9Kw(Addon): continue for d in details: - hosteroption = d.split("=") + hosteroption = d.split(" ") if len(hosteroption) < 2 or not hosteroption[1].isdigit(): continue |