Fixed: Don't try to test notifications when only on upgrade is enabled

This commit is contained in:
Mark McDowall 2014-09-12 17:12:33 -07:00
parent 51b397a00c
commit 8281063698
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace NzbDrone.Core.Notifications
{ {
get get
{ {
return OnGrab || OnDownload || OnUpgrade; return OnGrab || (OnDownload && OnUpgrade);
} }
} }
} }