From 828106369867529597e6b1ef1dc44cac6a9ae491 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 12 Sep 2014 17:12:33 -0700 Subject: [PATCH] Fixed: Don't try to test notifications when only on upgrade is enabled --- 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 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); } } }