Fixed notification enable logic and test when On Upgrade is disabled.

This commit is contained in:
Taloth Saldono 2015-03-31 22:02:16 +02:00
parent 7378a98e07
commit f2ec02876b
1 changed files with 1 additions and 1 deletions

View File

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