mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -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);
|
||||
throw;
|
||||
}
|
||||
catch (DownloadClientRejectedReleaseException)
|
||||
{
|
||||
_logger.Trace("Release {0} rejected by download client, possible duplicate.", remoteAlbum);
|
||||
throw;
|
||||
}
|
||||
catch (ReleaseDownloadException ex)
|
||||
{
|
||||
var http429 = ex.InnerException as TooManyRequestsException;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue