Fixing bug

This commit is contained in:
Luca Frosini 2023-05-15 13:00:59 +02:00
parent 01a8480180
commit 738b693697
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public class SecurityContext {
protected Set<SecurityContext> children;
protected boolean isHierarchicalMode() {
return hierarchical && RequestUtility.getRequestInfo().get().isHierarchicalMode();
return hierarchical || RequestUtility.getRequestInfo().get().isHierarchicalMode();
}
public void setParentSecurityContext(SecurityContext parentSecurityContext) {