Fix userHandle null, and force using security key when windows hello is activated in windows

This commit is contained in:
Gregory Letellier
2024-02-02 09:43:38 +01:00
parent b421096758
commit cfab865c1d
3 changed files with 7 additions and 2 deletions

View File

@@ -269,7 +269,7 @@ class WebAuthn {
]
.filter(key => key in credentials.response)
.forEach(key => parseCredentials.response[key] = WebAuthn.#arrayToBase64String(credentials.response[key]));
parseCredentials.response['userId'] = credentials.id;
return parseCredentials;
}