mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-03 10:06:24 +00:00
Fix for Addic7ed.
This commit is contained in:
parent
47f7944d64
commit
684c8009bc
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class Addic7edProvider(_Addic7edProvider):
|
||||||
if "relax, slow down" in r.text:
|
if "relax, slow down" in r.text:
|
||||||
raise TooManyRequests(self.username)
|
raise TooManyRequests(self.username)
|
||||||
|
|
||||||
if "Wrong password" in r.content or "doesn't exist" in r.content:
|
if "Wrong password" in r.text or "doesn't exist" in r.text:
|
||||||
raise AuthenticationError(self.username)
|
raise AuthenticationError(self.username)
|
||||||
|
|
||||||
if r.status_code != 302:
|
if r.status_code != 302:
|
||||||
|
|
Loading…
Reference in a new issue