Fixed: Refresh Removed Series Healthcheck on All Series Deletes

This commit is contained in:
bakerboy448 2023-10-13 13:07:04 -05:00 committed by GitHub
parent 076aaba908
commit c95c5dbb98
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>
{