Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions webext/add-on/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ async function cloneCredentialResponse(credential) {
const obj = {}
obj.id = credential.id;
obj.rawId = cloneInto(Uint8Array.fromBase64(credential.rawId, options), obj)
// TODO: get authenticator attachment
obj.authenticatorAttachment = undefined
obj.authenticatorAttachment = credential.authenticatorAttachment;
const response = {}
// credential registration response
if (credential.response.attestationObject) {
Expand Down
Loading