Skip to content

Commit

Permalink
fix for isAuthenticated decision (for required necessity)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jan 18, 2023
1 parent 0a7acdf commit 3980108
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private boolean allRequisiteModulesAreSuccessful() {
}

private boolean allRequiredModulesAreSuccessful() {
return nonSuccessfulModuleExists(AuthenticationSequenceModuleNecessityType.REQUIRED);
return !nonSuccessfulModuleExists(AuthenticationSequenceModuleNecessityType.REQUIRED);
}

private boolean nonSuccessfulModuleExists(AuthenticationSequenceModuleNecessityType moduleNecessity) {
Expand Down

0 comments on commit 3980108

Please sign in to comment.