1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

@ -20,7 +20,7 @@ public override Boolean Enable
{
get
{
return OnGrab || (OnDownload && OnUpgrade);
return OnGrab || OnDownload || (OnDownload && OnUpgrade);
}
}
}