This commit is contained in:
2021-12-08 17:22:18 +01:00
parent b88801500f
commit 89ac69fd4b
10 changed files with 74 additions and 38 deletions

View File

@ -348,7 +348,7 @@ public class Rule implements Comparable<Rule>
public boolean getsGreenLight(Context context)
{
return isRuleActive() && applies(context) && (hasNotAppliedSinceLastExecution() || isActuallyToggable());
return applies(context) && hasNotAppliedSinceLastExecution();
}
public boolean applies(Context context)