mirror of
https://github.com/Readarr/Readarr
synced 2026-04-18 19:00:56 +02:00
Fixed: Indexer being disabled due to download client rejecting it
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
56a623bad9
commit
e9de0420dd
1 changed files with 5 additions and 0 deletions
|
|
@ -80,6 +80,11 @@ public void DownloadReport(RemoteBook remoteBook)
|
|||
_logger.Trace("Release {0} no longer available on indexer.", remoteBook);
|
||||
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…
Reference in a new issue