From 52cabdb5e12c1d4a5364502ad9e836b7c5be33a5 Mon Sep 17 00:00:00 2001 From: YuriyZ Date: Wed, 29 Jan 2025 14:53:26 +0200 Subject: [PATCH] fix(jans-auth-server): typo in determineConsentFlow method #10758 (#10759) Signed-off-by: YuriyZ --- .../authorize/ws/rs/ConsentGatheringSessionService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jans-auth-server/server/src/main/java/io/jans/as/server/authorize/ws/rs/ConsentGatheringSessionService.java b/jans-auth-server/server/src/main/java/io/jans/as/server/authorize/ws/rs/ConsentGatheringSessionService.java index bb82c198232..72f4f709be4 100644 --- a/jans-auth-server/server/src/main/java/io/jans/as/server/authorize/ws/rs/ConsentGatheringSessionService.java +++ b/jans-auth-server/server/src/main/java/io/jans/as/server/authorize/ws/rs/ConsentGatheringSessionService.java @@ -179,9 +179,9 @@ private String determineConsentFlow(List acrValues) { return null; } - final Map acrToConsent = appConfiguration.getAcrToConsentScriptNameMapping(); + final Map 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; }