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:
parent
e5ff4aafa3
commit
0b87280335
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue