Skip to content

Commit

Permalink
fix(oxauth): when acr_values has multiple values, order of processing…
Browse files Browse the repository at this point in the history
… is not always preserved #1922
  • Loading branch information
yuriyz committed Sep 20, 2024
1 parent 34e88b2 commit 630064c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -930,9 +930,9 @@ public List<String> acrValuesList(String acrValues) {
} catch (JSONException ex) {
acrs = Util.splittedStringAsList(acrValues, " ");
}
HashSet<String> resultAcrs = new HashSet<String>();


LinkedHashSet<String> resultAcrs = new LinkedHashSet<String>();
for (String acr : acrs) {
resultAcrs.add(externalAuthenticationService.scriptName(acr));
}
Expand Down

0 comments on commit 630064c

Please sign in to comment.