U2F fix in second place

Ryan Blenis committed Feb 27, 2020 at 17:14 UTC 9028eca40a1bcb5ff8e35da1e7849eb795f74af3
1 file changed +1 -1
views/login.handlebars
+1 -1
@@ -388,7 +388,7 @@
388 publicKeyCredentialRequestOptions = { challenge: hardwareKeyChallenge.challenge, allowCredentials: [], timeout: hardwareKeyChallenge.timeout }
389 for (var i = 0; i < hardwareKeyChallenge.keyIds.length; i++) {
390 publicKeyCredentialRequestOptions.allowCredentials.push(
391 - { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc'], }
391 + { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'interal'] }
392 );
393 }
394