Fixed: Retrying download on not suppressed HTTP errors

pull/8516/merge v5.5.1.8747
Bogdan 1 week ago
parent c8a6b9f565
commit 3db78079f3

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

Loading…
Cancel
Save