Fixed: Test All not clearing health error

Fixes #3409
This commit is contained in:
Mark McDowall 2019-12-06 17:41:59 -08:00
parent 415bbf5b3b
commit c3c38880e6
2 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,7 @@ function getInternalLink(source) {
case 'RootFolderCheck': case 'RootFolderCheck':
return ( return (
<IconButton <IconButton
name={icons.PLAY} name={icons.SERIES_CONTINUING}
title="Series Editor" title="Series Editor"
to="/serieseditor" to="/serieseditor"
/> />

View File

@ -8,6 +8,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{ {
[CheckOn(typeof(ProviderUpdatedEvent<IDownloadClient>))] [CheckOn(typeof(ProviderUpdatedEvent<IDownloadClient>))]
[CheckOn(typeof(ProviderDeletedEvent<IDownloadClient>))] [CheckOn(typeof(ProviderDeletedEvent<IDownloadClient>))]
[CheckOn(typeof(ProviderStatusChangedEvent<IDownloadClient>))]
public class DownloadClientCheck : HealthCheckBase public class DownloadClientCheck : HealthCheckBase
{ {
private readonly IProvideDownloadClient _downloadClientProvider; private readonly IProvideDownloadClient _downloadClientProvider;