Fixed: Indexer being disabled due to download client rejecting it
This commit is contained in:
parent
a10eb88a95
commit
644d16d82b
|
@ -81,6 +81,11 @@ namespace NzbDrone.Core.Download
|
||||||
_logger.Trace("Release {0} no longer available on indexer.", remoteEpisode);
|
_logger.Trace("Release {0} no longer available on indexer.", remoteEpisode);
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
catch (DownloadClientRejectedReleaseException)
|
||||||
|
{
|
||||||
|
_logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteEpisode);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (ReleaseDownloadException ex)
|
catch (ReleaseDownloadException ex)
|
||||||
{
|
{
|
||||||
var http429 = ex.InnerException as TooManyRequestsException;
|
var http429 = ex.InnerException as TooManyRequestsException;
|
||||||
|
|
Loading…
Reference in New Issue