1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04: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
@@ -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)
{