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

This commit is contained in:
Taloth Saldono committed 2015-04-02 19:52:37 +02:00
1 parent 7378a98e07
commit f2ec02876b
1 file changed
+1 -1
@@ -20,7 +20,7 @@ public override Boolean Enable
{
get
{
return OnGrab || (OnDownload && OnUpgrade);
return OnGrab || OnDownload || (OnDownload && OnUpgrade);
}
}
}