From d564914f4b39f8a12e2ca9ccd4c42a21d7a447a6 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Tue, 25 Feb 2020 16:59:40 -0500 Subject: [PATCH] Allow TouchID --- views/login.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/login.handlebars b/views/login.handlebars index a360ec47..4c9b84a0 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -353,7 +353,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', 'internal'] } ); }