Skip to content

Commit

Permalink
Fixed: Notifications with only On Rename enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed May 9, 2024
1 parent 94bb8a4 commit 596a36d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NzbDrone.Core/Notifications/NotificationDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public class NotificationDefinition : ProviderDefinition
public bool SupportsOnTrackRetag { get; set; }
public bool SupportsOnApplicationUpdate { get; set; }

public override bool Enable => OnGrab || OnReleaseImport || (OnReleaseImport && OnUpgrade) || OnArtistAdd || OnArtistDelete || OnAlbumDelete || OnHealthIssue || OnHealthRestored || OnDownloadFailure || OnImportFailure || OnTrackRetag || OnApplicationUpdate;
public override bool Enable => OnGrab || OnReleaseImport || (OnReleaseImport && OnUpgrade) || OnRename || OnArtistAdd || OnArtistDelete || OnAlbumDelete || OnHealthIssue || OnHealthRestored || OnDownloadFailure || OnImportFailure || OnTrackRetag || OnApplicationUpdate;
}
}

0 comments on commit 596a36d

Please sign in to comment.