From 8ee16b81eccb3dadc1523c11477ffe7880f2f739 Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 30 Sep 2020 21:25:12 -0400 Subject: [PATCH] Fixed: Indexer being disabled due to download client rejecting it Co-Authored-By: Mark McDowall --- 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 9a28915d2..48395ab18 100644 --- a/src/NzbDrone.Core/Download/DownloadService.cs +++ b/src/NzbDrone.Core/Download/DownloadService.cs @@ -79,6 +79,11 @@ namespace NzbDrone.Core.Download _logger.Trace("Release {0} no longer available on indexer.", remoteMovie); throw; } + catch (DownloadClientRejectedReleaseException) + { + _logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteMovie); + throw; + } catch (ReleaseDownloadException ex) { var http429 = ex.InnerException as TooManyRequestsException;