Check only clients not in failure status in DownloadClientSortingCheck

(cherry picked from commit 0b872803358bac1297cc7618ea3c13a32a92b5a4)
This commit is contained in:
Bogdan 2023-06-09 20:30:37 +03:00
parent 2fe28cb1dc
commit d2cb36c88a
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
public override HealthCheck Check() public override HealthCheck Check()
{ {
var clients = _downloadClientProvider.GetDownloadClients(); var clients = _downloadClientProvider.GetDownloadClients(true);
foreach (var client in clients) foreach (var client in clients)
{ {