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 committed by Qstick
commit bc12f5cf9f

View file

@ -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;