From fdbd077852386781cee95e19af501b3daeac4e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sami=20V=C3=A4nttinen?= Date: Sat, 29 Nov 2025 16:33:02 +0200 Subject: [PATCH] Passkeys: Add publicKey to response (#2782) Passkeys: Add publicKey to response --- keepassxc-browser/content/passkeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepassxc-browser/content/passkeys.js b/keepassxc-browser/content/passkeys.js index 6354532..e2e6217 100644 --- a/keepassxc-browser/content/passkeys.js +++ b/keepassxc-browser/content/passkeys.js @@ -77,7 +77,7 @@ attestationObject: kpxcBase64ToArrayBuffer(publicKey.response.attestationObject), clientDataJSON: kpxcBase64ToArrayBuffer(publicKey.response.clientDataJSON), getAuthenticatorData: () => kpxcBase64ToArrayBuffer(publicKey.response?.authenticatorData), - getPublicKey: () => null, + getPublicKey: () => publicKey.response?.publicKey ? publicKey.response?.publicKey : null, getPublicKeyAlgorithm: () => publicKey.response?.publicKeyAlgorithm, getTransports: () => [ 'internal' ] };