mirror of
https://github.com/Radarr/Radarr
synced 2025-12-27 18:54:03 +01:00
Check only clients not in failure status in DownloadClientSortingCheck
(cherry picked from commit 0b872803358bac1297cc7618ea3c13a32a92b5a4)
This commit is contained in:
parent
2fe28cb1dc
commit
d2cb36c88a
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ public DownloadClientSortingCheck(IProvideDownloadClient downloadClientProvider,
|
|||
|
||||
public override HealthCheck Check()
|
||||
{
|
||||
var clients = _downloadClientProvider.GetDownloadClients();
|
||||
var clients = _downloadClientProvider.GetDownloadClients(true);
|
||||
|
||||
foreach (var client in clients)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue