diff --git a/src/NzbDrone.Core/Notifications/NotificationDefinition.cs b/src/NzbDrone.Core/Notifications/NotificationDefinition.cs index 3c87bf2d7..527985136 100644 --- a/src/NzbDrone.Core/Notifications/NotificationDefinition.cs +++ b/src/NzbDrone.Core/Notifications/NotificationDefinition.cs @@ -20,7 +20,7 @@ namespace NzbDrone.Core.Notifications { get { - return OnGrab || (OnDownload && OnUpgrade); + return OnGrab || OnDownload || (OnDownload && OnUpgrade); } } }