Check only clients not in failure status in DownloadClientSortingCheck

(cherry picked from commit 0b872803358bac1297cc7618ea3c13a32a92b5a4)
pull/8695/head
Bogdan 1 year ago
parent 2fe28cb1dc
commit d2cb36c88a

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

Loading…
Cancel
Save