From 644d16d82b6576783c351c4115ec27f0a373e84e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 29 Sep 2020 20:40:18 -0700 Subject: [PATCH] Fixed: Indexer being disabled due to download client rejecting it --- src/NzbDrone.Core/Download/DownloadService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/NzbDrone.Core/Download/DownloadService.cs b/src/NzbDrone.Core/Download/DownloadService.cs index 2f03337e4..5f677f13e 100644 --- a/src/NzbDrone.Core/Download/DownloadService.cs +++ b/src/NzbDrone.Core/Download/DownloadService.cs @@ -81,6 +81,11 @@ namespace NzbDrone.Core.Download _logger.Trace("Release {0} no longer available on indexer.", remoteEpisode); throw; } + catch (DownloadClientRejectedReleaseException) + { + _logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteEpisode); + throw; + } catch (ReleaseDownloadException ex) { var http429 = ex.InnerException as TooManyRequestsException;