Fixed: Indexer being disabled due to download client rejecting it

pull/1807/head
Mark McDowall 4 years ago committed by Qstick
parent 25ed9e5020
commit bc12f5cf9f

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

Loading…
Cancel
Save