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