From 492b11451039ae1e622e82468b75e8c615eb4d12 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Mon, 20 Jul 2015 18:37:43 +0200 Subject: [PATCH] Added rarbg error code for unknown series. --- src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs b/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs index 425161368..93ea2e8fe 100644 --- a/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs +++ b/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs @@ -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;