mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-20 21:27:16 +00:00
Added rarbg error code for unknown series.
This commit is contained in:
parent
55412968e0
commit
492b114510
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace NzbDrone.Core.Indexers.Rarbg
|
|||
|
||||
if (jsonResponse.Resource.error_code.HasValue)
|
||||
{
|
||||
if (jsonResponse.Resource.error_code == 20)
|
||||
if (jsonResponse.Resource.error_code == 20 || jsonResponse.Resource.error_code == 8)
|
||||
{
|
||||
// No results found
|
||||
return results;
|
||||
|
|
Loading…
Reference in a new issue