Check only clients not in failure status in DownloadClientSortingCheck

This commit is contained in:
Bogdan 2023-06-09 20:30:37 +03:00
parent d606144e00
commit 098d88c27a
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)
{