diff --git a/src/NzbDrone.Core/Notifications/NotificationDefinition.cs b/src/NzbDrone.Core/Notifications/NotificationDefinition.cs index 957a5ea453..3ad406399a 100644 --- a/src/NzbDrone.Core/Notifications/NotificationDefinition.cs +++ b/src/NzbDrone.Core/Notifications/NotificationDefinition.cs @@ -13,7 +13,7 @@ public override Boolean Enable { get { - return OnGrab || OnDownload || OnUpgrade; + return OnGrab || (OnDownload && OnUpgrade); } } }