Fixed: Retrying download on not suppressed HTTP errors

pull/2110/head
Bogdan 1 week ago
parent ab3dc765b4
commit 77a982a7da

@ -38,6 +38,7 @@ namespace NzbDrone.Core.Indexers
{
{ Result.HasHttpServerError: true } => PredicateResult.True(),
{ Result.StatusCode: HttpStatusCode.RequestTimeout } => PredicateResult.True(),
{ Exception: HttpException { Response.HasHttpServerError: true } } => PredicateResult.True(),
_ => PredicateResult.False()
},
Delay = RateLimit,

Loading…
Cancel
Save