Fix for Addic7ed.

This commit is contained in:
Louis Vézina 2019-11-15 12:38:34 -05:00
parent 47f7944d64
commit 684c8009bc
1 changed files with 1 additions and 1 deletions

View File

@ -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: