Skip to content

Commit

Permalink
Fixed: (RarBG) Don't disable indexer on temp rate limit
Browse files Browse the repository at this point in the history
Fixes #1027
  • Loading branch information
Qstick committed Sep 18, 2022
1 parent dcae6dc commit 06a26b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs
Expand Up @@ -40,9 +40,10 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
if (jsonResponse.Resource.error_code.HasValue)
{
if (jsonResponse.Resource.error_code == 20 || jsonResponse.Resource.error_code == 8
|| jsonResponse.Resource.error_code == 9 || jsonResponse.Resource.error_code == 10)
|| jsonResponse.Resource.error_code == 9 || jsonResponse.Resource.error_code == 10
|| jsonResponse.Resource.error_code == 5)
{
// No results or imdbid not found
// No results, rate limit, or imdbid not found
return results;
}

Expand Down

0 comments on commit 06a26b5

Please sign in to comment.