mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-04 18:40:46 +02:00
Fixed: Retrying download on not suppressed HTTP errors
This commit is contained in:
parent
2e242aeb7b
commit
b0038dd143
1 changed files with 1 additions and 0 deletions
|
|
@ -32,6 +32,7 @@ public abstract class DownloadClientBase<TSettings> : IDownloadClient
|
|||
{
|
||||
{ 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…
Reference in a new issue