1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00: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);
}
}
}