Fixed: Re-run Removed Series health check after series is deleted

This commit is contained in:
bakerboy448 2023-10-17 01:50:08 -05:00 committed by GitHub
parent ec8da1c7de
commit 7b31287fc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ using NzbDrone.Core.Tv.Events;
namespace NzbDrone.Core.HealthCheck.Checks
{
[CheckOn(typeof(SeriesUpdatedEvent))]
[CheckOn(typeof(SeriesDeletedEvent), CheckOnCondition.FailedOnly)]
[CheckOn(typeof(SeriesDeletedEvent))]
[CheckOn(typeof(SeriesRefreshCompleteEvent))]
public class RemovedSeriesCheck : HealthCheckBase, ICheckOnCondition<SeriesUpdatedEvent>, ICheckOnCondition<SeriesDeletedEvent>
{