Fixed: Execute Remote Path Mapping Check on failed track import

This commit is contained in:
Bogdan 2023-09-04 07:14:57 +03:00
parent a3cfb52c6a
commit baa0e17ac6
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
[CheckOn(typeof(ProviderUpdatedEvent<IDownloadClient>))]
[CheckOn(typeof(ProviderDeletedEvent<IDownloadClient>))]
[CheckOn(typeof(ModelEvent<RemotePathMapping>))]
[CheckOn(typeof(TrackImportedEvent), CheckOnCondition.SuccessfulOnly)]
[CheckOn(typeof(TrackImportFailedEvent), CheckOnCondition.SuccessfulOnly)]
public class RemotePathMappingCheck : HealthCheckBase, IProvideHealthCheck
{
private readonly IDiskProvider _diskProvider;