From bc12f5cf9fcf434cd37dcc2e346ff4d1ea5b00d9 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 f1348cf2e..58e57fd1a 100644 --- a/src/NzbDrone.Core/Download/DownloadService.cs +++ b/src/NzbDrone.Core/Download/DownloadService.cs @@ -80,6 +80,11 @@ namespace NzbDrone.Core.Download _logger.Trace("Release {0} no longer available on indexer.", remoteAlbum); throw; } + catch (DownloadClientRejectedReleaseException) + { + _logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteAlbum); + throw; + } catch (ReleaseDownloadException ex) { var http429 = ex.InnerException as TooManyRequestsException;