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