no log: improvement to opensubtitles.com again

This commit is contained in:
morpheus65535 2022-01-29 09:01:13 -05:00
parent 669bd3376a
commit 6b36920b1c
1 changed files with 5 additions and 0 deletions

View File

@ -444,11 +444,16 @@ def checked(fn, raise_api_limit=False, validate_token=False, validate_json=False
return 401
else:
raise AuthenticationError(f'Login failed: {response.reason}')
elif status_code == 403:
raise ProviderError("Bazarr API key seems to be in problem")
elif status_code == 406:
raise DownloadLimitExceeded("Daily download limit reached")
elif status_code == 410:
raise ProviderError("Download as expired")
elif status_code == 429:
raise TooManyRequests()
elif status_code == 502:
# this one should deal with Bad Gateway issue on their side.
raise APIThrottled()
elif 500 <= status_code <= 599:
raise ProviderError(response.reason)