mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07: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.HasValue)
|
||||||
{
|
{
|
||||||
if (jsonResponse.Resource.error_code == 20)
|
if (jsonResponse.Resource.error_code == 20 || jsonResponse.Resource.error_code == 8)
|
||||||
{
|
{
|
||||||
// No results found
|
// No results found
|
||||||
return results;
|
return results;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue