From f2ec02876bcc727d213970dadaa551c0f5980cdb Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 31 Mar 2015 22:02:16 +0200 Subject: [PATCH] Fixed notification enable logic and test when On Upgrade is disabled. --- src/NzbDrone.Core/Notifications/NotificationDefinition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ public override Boolean Enable { get { - return OnGrab || (OnDownload && OnUpgrade); + return OnGrab || OnDownload || (OnDownload && OnUpgrade); } } }