Skip to content

Commit

Permalink
fix(jans-auth-server): typo in determineConsentFlow method #10758 (#1…
Browse files Browse the repository at this point in the history
…0759)

Signed-off-by: YuriyZ <[email protected]>
  • Loading branch information
yuriyz authored Jan 29, 2025
1 parent e1982e1 commit 52cabdb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ private String determineConsentFlow(List<String> acrValues) {
return null;
}

final Map<String, String> acrToConsent = appConfiguration.getAcrToConsentScriptNameMapping();
final Map<String, String> acrToConsent = appConfiguration.getAcrToAgamaConsentFlowMapping();
if (acrToConsent == null || acrToConsent.isEmpty()) {
log.debug("determineConsentFlow - 'acrToConsentScriptNameMapping' configuration property is empty, return null for 'consent_flow'");
log.debug("determineConsentFlow - 'acrToAgamaConsentFlowMapping' configuration property is empty, return null for 'consent_flow'");
return null;
}

Expand Down

0 comments on commit 52cabdb

Please sign in to comment.