Fixed: Retrying download on not suppressed HTTP errors

pull/3440/head
Bogdan 2 months ago
parent 9957f734a5
commit fd4a609f51

@ -32,6 +32,7 @@ namespace NzbDrone.Core.Download
{ {
{ Result.HasHttpServerError: true } => PredicateResult.True(), { Result.HasHttpServerError: true } => PredicateResult.True(),
{ Result.StatusCode: HttpStatusCode.RequestTimeout } => PredicateResult.True(), { Result.StatusCode: HttpStatusCode.RequestTimeout } => PredicateResult.True(),
{ Exception: HttpException { Response.HasHttpServerError: true } } => PredicateResult.True(),
_ => PredicateResult.False() _ => PredicateResult.False()
}, },
Delay = TimeSpan.FromSeconds(3), Delay = TimeSpan.FromSeconds(3),

Loading…
Cancel
Save