Remove it for all creds

This commit is contained in:
Adrià Casajús 2022-04-26 18:44:57 +02:00
parent ff33380bed
commit 657cae53a6
No known key found for this signature in database
GPG Key ID: F0033226A5AFC9B9
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ def fido():
webauthn_assertion_options = webauthn_assertion_options.assertion_dict
try:
# HACK: We need to upgrade to webauthn > 1 so it can support specifying the transports
del webauthn_assertion_options["allowCredentials"][0]["transports"]
for credential in webauthn_assertion_options["allowCredentials"]:
del credential["transports"]
except KeyError:
# Should never happen but...
pass