From c3c38880e623c740018fc0cce42a748f4fac9ddd Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 6 Dec 2019 17:41:59 -0800 Subject: [PATCH] Fixed: Test All not clearing health error Fixes #3409 --- frontend/src/System/Status/Health/Health.js | 2 +- src/NzbDrone.Core/HealthCheck/Checks/DownloadClientCheck.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/System/Status/Health/Health.js b/frontend/src/System/Status/Health/Health.js index 10bbe0ac0..2d13b7aa2 100644 --- a/frontend/src/System/Status/Health/Health.js +++ b/frontend/src/System/Status/Health/Health.js @@ -38,7 +38,7 @@ function getInternalLink(source) { case 'RootFolderCheck': return ( diff --git a/src/NzbDrone.Core/HealthCheck/Checks/DownloadClientCheck.cs b/src/NzbDrone.Core/HealthCheck/Checks/DownloadClientCheck.cs index 8b1959c65..f54bfc5e1 100644 --- a/src/NzbDrone.Core/HealthCheck/Checks/DownloadClientCheck.cs +++ b/src/NzbDrone.Core/HealthCheck/Checks/DownloadClientCheck.cs @@ -8,6 +8,7 @@ namespace NzbDrone.Core.HealthCheck.Checks { [CheckOn(typeof(ProviderUpdatedEvent))] [CheckOn(typeof(ProviderDeletedEvent))] + [CheckOn(typeof(ProviderStatusChangedEvent))] public class DownloadClientCheck : HealthCheckBase { private readonly IProvideDownloadClient _downloadClientProvider;