mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Fixed: Indexer being disabled due to download client rejecting it
This commit is contained in:
parent
25ed9e5020
commit
bc12f5cf9f
1 changed files with 5 additions and 0 deletions
|
@ -80,6 +80,11 @@ namespace NzbDrone.Core.Download
|
||||||
_logger.Trace("Release {0} no longer available on indexer.", remoteAlbum);
|
_logger.Trace("Release {0} no longer available on indexer.", remoteAlbum);
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
catch (DownloadClientRejectedReleaseException)
|
||||||
|
{
|
||||||
|
_logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteAlbum);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (ReleaseDownloadException ex)
|
catch (ReleaseDownloadException ex)
|
||||||
{
|
{
|
||||||
var http429 = ex.InnerException as TooManyRequestsException;
|
var http429 = ex.InnerException as TooManyRequestsException;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue