Skip to content

Commit

Permalink
adressed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aka4rKO committed Nov 22, 2024
1 parent d137463 commit 4abc53c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ public Map<String, Object> updateRequestAttribute(HttpServletRequest httpServlet
// Get Customer Type Selection Method from config
String customerTypeSelectionMethod = OpenBankingCDSConfigParser.getInstance()
.getBNRCustomerTypeSelectionMethod();
String customerTypeCookieName = OpenBankingCDSConfigParser.getInstance()
.getBNRCustomerTypeSelectionCookieName();
if (CustomerTypeSelectionMethodEnum.COOKIE_DATA.toString().equals(customerTypeSelectionMethod)) {
String preSelectedProfileIdFromCookie = null;
String customerTypeCookieName = OpenBankingCDSConfigParser.getInstance()
.getBNRCustomerTypeSelectionCookieName();

Cookie[] cookies = httpServletRequest.getCookies();
for (Cookie cookie : cookies) {
Expand Down

0 comments on commit 4abc53c

Please sign in to comment.