mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-24 16:52:06 +00:00
Fix for #391.
This commit is contained in:
parent
1783c0cd06
commit
bc9a1bc113
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ os.environ["SZ_USER_AGENT"] = "Bazarr/1"
|
|||
if settings.general.anti_captcha_provider == 'anti-captcha':
|
||||
os.environ["ANTICAPTCHA_CLASS"] = 'AntiCaptchaProxyLess'
|
||||
os.environ["ANTICAPTCHA_ACCOUNT_KEY"] = settings.anticaptcha.anti_captcha_key
|
||||
elif settings.general.anti_captcha_provider == 'AntiCaptchaProxyLessPitcher':
|
||||
elif settings.general.anti_captcha_provider == 'death-by-captcha':
|
||||
os.environ["ANTICAPTCHA_CLASS"] = 'DBCProxyLess'
|
||||
os.environ["ANTICAPTCHA_ACCOUNT_KEY"] = ':'.join({settings.deathbycaptcha.username, settings.deathbycaptcha.password})
|
||||
else:
|
||||
|
|
|
@ -1320,7 +1320,7 @@ def save_settings():
|
|||
if settings.general.anti_captcha_provider == 'anti-captcha':
|
||||
os.environ["ANTICAPTCHA_CLASS"] = 'AntiCaptchaProxyLess'
|
||||
os.environ["ANTICAPTCHA_ACCOUNT_KEY"] = settings.anticaptcha.anti_captcha_key
|
||||
elif settings.general.anti_captcha_provider == 'AntiCaptchaProxyLessPitcher':
|
||||
elif settings.general.anti_captcha_provider == 'death-by-captcha':
|
||||
os.environ["ANTICAPTCHA_CLASS"] = 'DBCProxyLess'
|
||||
os.environ["ANTICAPTCHA_ACCOUNT_KEY"] = ':'.join(
|
||||
{settings.deathbycaptcha.username, settings.deathbycaptcha.password})
|
||||
|
|
Loading…
Reference in a new issue