Skip to content

Commit

Permalink
Passkeys: fix navigator.credentials.store override
Browse files Browse the repository at this point in the history
  • Loading branch information
varjolintu committed Nov 9, 2024
1 parent 445a807 commit 7be5f29
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions keepassxc-browser/content/passkeys.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ const throwError = function(errorCode, errorMessage) {
}

return createPublicKeyCredential(response.publicKey);
},
async store(credential) {
return originalCredentials.store(credential);
}
};

Expand Down

0 comments on commit 7be5f29

Please sign in to comment.