-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
After upgrading to 3.2.0, both attestation and userVerification value are null and being included #441
Comments
santiagorodriguez96
added a commit
that referenced
this issue
Nov 14, 2024
In Rails, `nil` responds to `as_json` therefore the attributes whose value is `nil` are added to the result of `as_json`, which may end up causing issues with some authenticators – see #441. This commits adds another condition to the if in order to prevent attributes with a `nil` value to be added to the resulting json.
santiagorodriguez96
added a commit
that referenced
this issue
Nov 14, 2024
In Rails, `nil` responds to `as_json` therefore the attributes whose value is `nil` are added to the result of `as_json`, which may end up causing issues with some authenticators – see #441. This commits adds another condition to the if in order to prevent this from happening.
@mech we've released Thanks! |
Hi happy to report that it is working well with 1Password now 👏. Tks for the quick fix! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After upgrading to 3.2.0, it seems that both
attestation
anduserVerification
value become null and will be included into the final JSON. Although it worked for Safari keychain and Chrome profile, it did not work for 1Password.On 3.1.0
On 3.2.0, the JSON will include the
"attestation": null
which don't work in 1Password.The text was updated successfully, but these errors were encountered: