Skip to content

Commit

Permalink
Merge pull request #407 from gianpaolo-tndigit/attribute-lowercase
Browse files Browse the repository at this point in the history
fix #405 username is correctly put in field username
  • Loading branch information
matteo-s authored Sep 4, 2023
2 parents fe6e343 + 89c4ced commit cef1af5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public Map<String, Serializable> getAttributes() {

// override if set
if (StringUtils.hasText(username)) {
result.put("name", username);
result.put("username", username);
}

if (StringUtils.hasText(emailAddress)) {
Expand Down

0 comments on commit cef1af5

Please sign in to comment.