Fixed: Indexer being disabled due to download client rejecting it

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/5089/head
Qstick 4 years ago
parent a7a1d48e0d
commit 8ee16b81ec

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

Loading…
Cancel
Save