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;