From 9028eca40a1bcb5ff8e35da1e7849eb795f74af3 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Thu, 27 Feb 2020 17:14:28 -0500 Subject: [PATCH] U2F fix in second place --- views/login.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/login.handlebars b/views/login.handlebars index 4c9b84a0..20946156 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -388,7 +388,7 @@ publicKeyCredentialRequestOptions = { challenge: hardwareKeyChallenge.challenge, allowCredentials: [], timeout: hardwareKeyChallenge.timeout } for (var i = 0; i < hardwareKeyChallenge.keyIds.length; i++) { publicKeyCredentialRequestOptions.allowCredentials.push( - { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc'], } + { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'interal'] } ); }