mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 22:27:17 -04: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:
|
||||
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)
|
||||
|
||||
if r.status_code != 302:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue