Fixed: Indexer being disabled due to download client rejecting it

This commit is contained in:
Mark McDowall 2020-09-29 20:40:18 -07:00
parent a10eb88a95
commit 644d16d82b
1 changed files with 5 additions and 0 deletions

View File

@ -81,6 +81,11 @@ namespace NzbDrone.Core.Download
_logger.Trace("Release {0} no longer available on indexer.", remoteEpisode); _logger.Trace("Release {0} no longer available on indexer.", remoteEpisode);
throw; throw;
} }
catch (DownloadClientRejectedReleaseException)
{
_logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteEpisode);
throw;
}
catch (ReleaseDownloadException ex) catch (ReleaseDownloadException ex)
{ {
var http429 = ex.InnerException as TooManyRequestsException; var http429 = ex.InnerException as TooManyRequestsException;