1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-03 13:45:02 +00:00

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

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