mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2206 from keepassxreboot/fix/passkeys_remove_temporary_exceptions
Passkeys: Remove temporary exceptions
This commit is contained in:
commit
d433d8ac3d
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