1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fix for Newznab providers

This commit is contained in:
echel0n 2014-04-25 21:53:44 -07:00
parent 6c9fb4b0bd
commit 26e259c036

View File

@ -168,7 +168,7 @@ class NewznabProvider(generic.NZBProvider):
status = data.status status = data.status
if status: if status:
if status == 200: if status in [200, 301]:
return True return True
if status == 100: if status == 100:
raise AuthException("Your API key for " + self.name + " is incorrect, check your config.") raise AuthException("Your API key for " + self.name + " is incorrect, check your config.")