1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Indexer being disabled due to download client rejecting it

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-09-30 21:25:12 -04:00
parent a7a1d48e0d
commit 8ee16b81ec

View File

@ -79,6 +79,11 @@ public void DownloadReport(RemoteMovie remoteMovie)
_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;