mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Passkeys: Remove temporary exceptions
This commit is contained in:
parent
f58a87568f
commit
276f05ce29
1 changed files with 0 additions and 10 deletions
|
|
@ -94,11 +94,6 @@ kpxcPasskeysUtils.buildCredentialCreationOptions = function(pkOptions, sameOrigi
|
|||
publicKey.user.id = arrayBufferToBase64(pkOptions.user.id);
|
||||
publicKey.user.name = pkOptions.user.name;
|
||||
|
||||
// TODO: Disable after fixed in KeePassXC side
|
||||
if (!publicKey.rp.id) {
|
||||
publicKey.rp.id = window.location.hostname;
|
||||
}
|
||||
|
||||
return publicKey;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
|
|
@ -138,11 +133,6 @@ kpxcPasskeysUtils.buildCredentialRequestOptions = function(pkOptions, sameOrigin
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: Disable after fixed in KeePassXC side
|
||||
if (!publicKey.rpId) {
|
||||
publicKey.rpId = window.location.hostname;
|
||||
}
|
||||
|
||||
return publicKey;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
|
|
|
|||
Loading…
Reference in a new issue