Skip to content

Commit

Permalink
Add missing username case preservation change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan971 committed Feb 23, 2023
1 parent cf80e56 commit b617931
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public UserModel addUser(RealmModel realm, String username) {
.map(provider -> provider.addUser(realm, username))
.filter(Objects::nonNull)
.findFirst()
.orElseGet(() -> localStorage().addUser(realm, username.toLowerCase()));
.orElseGet(() -> localStorage().addUser(realm, username));
}

@Override
Expand Down

0 comments on commit b617931

Please sign in to comment.