Skip to content

Commit

Permalink
Merge branch 'release/33.x'
Browse files Browse the repository at this point in the history
* release/33.x:
  #5050 - Tags on the second level of conditional features cannot be selected
  • Loading branch information
reckart committed Sep 13, 2024
2 parents ffb85ce + 7608b4e commit e3dc4f2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ public boolean anyRuleAffectingFeatureMatchesAllConditions(ParsedConstraints aCo

for (var rule : scope.getRules()) {
if (allRuleConditionsMatch(aConstraints, rule, aContext)) {
return anyRestrictionAffectsFeature(aConstraints, rule, aFeature);
if (anyRestrictionAffectsFeature(aConstraints, rule, aFeature)) {
return true;
}
}
}

Expand Down

0 comments on commit e3dc4f2

Please sign in to comment.