From 5ca32a7e848442ac49f24aef3d49a1b421e09596 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 Signed-off-by: Robin Dadswell --- 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 0718dc484..6abc6a91f 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.", remoteBook); throw; } + catch (DownloadClientRejectedReleaseException) + { + _logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteAlbum); + throw; + } catch (ReleaseDownloadException ex) { var http429 = ex.InnerException as TooManyRequestsException;