Check only clients not in failure status in DownloadClientSortingCheck

This commit is contained in:
Bogdan 2023-06-09 20:30:37 +03:00 committed by Mark McDowall
parent e5ff4aafa3
commit 0b87280335
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{