mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-08 20:59:57 +02: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 @@ public void DownloadReport(RemoteAlbum remoteAlbum)
|
||||||
_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…
Reference in a new issue