Skip to content

Commit

Permalink
[PM-4773] Google Passkey workarounds (#6847)
Browse files Browse the repository at this point in the history
* Update fido2-client.service.ts

* Update fido2-client.service.ts

* Update fido2-authenticator.service.ts

* Revert fido2-client.service.ts

* Update fido2-authenticator.service.ts

* Revert fido2-authenticator.service.ts

* Use usb transport again

* Update fido2-authenticator.service.ts

* Update fido2-client.service.ts

---------

Co-authored-by: SmithThe4th <gsmith@bitwarden.com>
  • Loading branch information
zilleste and gbubemismith authored Nov 20, 2023
1 parent b622c38 commit b988429
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export class Fido2ClientService implements Fido2ClientServiceAbstraction {
authData: Fido2Utils.bufferToString(makeCredentialResult.authData),
clientDataJSON: Fido2Utils.bufferToString(clientDataJSONBytes),
publicKeyAlgorithm: makeCredentialResult.publicKeyAlgorithm,
transports: ["internal"],
transports: params.rp.id === "google.com" ? ["internal", "usb"] : ["internal"],
};
}

Expand Down

0 comments on commit b988429

Please sign in to comment.