We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When setting the phoneNumberVerified field, it accept a String instead of a boolean.
To Reproduce OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(String.valueOf(true)).build();
OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(String.valueOf(true)).build();
Expected behavior OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(true).build();
OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(true).build();
The text was updated successfully, but these errors were encountered:
Use Boolean field for OidcUserInfo.phoneNumberVerified
629e220
Related spring-projects/spring-security#11315 Closes gh-923
Thanks for the report @ramonmalcolm10. This is now resolved via 629e220.
Sorry, something went wrong.
c3dbc70
Related spring-projects/spring-security#11315 Closes spring-projectsgh-923
jgrandja
No branches or pull requests
Describe the bug
When setting the phoneNumberVerified field, it accept a String instead of a boolean.
To Reproduce
OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(String.valueOf(true)).build();
Expected behavior
OidcUserInfo userInfo = OidcUserInfo.builder().phoneNumberVerified(true).build();
The text was updated successfully, but these errors were encountered: