From e57ebc71081210318cc74488a25678d8b9016b66 Mon Sep 17 00:00:00 2001 From: Roberto Hidalgo Date: Wed, 4 Jan 2023 16:07:10 -0600 Subject: [PATCH] try without encoding maybe? --- internal/server/static/webauthn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/server/static/webauthn.js b/internal/server/static/webauthn.js index 11aafea..c288e72 100644 --- a/internal/server/static/webauthn.js +++ b/internal/server/static/webauthn.js @@ -3,7 +3,7 @@ import * as webauthnJSON from 'https://unpkg.com/@github/webauthn-json@2.0.2/dist/esm/webauthn-json.browser-ponyfill.js' const charsToEncode = /[\u007f-\uffff]/g; function JSONtob64(data) { - return btoa(encodeURIComponent(JSON.stringify(data).replace(charsToEncode, (c) => '\\u'+('000'+c.charCodeAt(0).toString(16)).slice(-4)))) + return btoa(JSON.stringify(data).replace(charsToEncode, (c) => '\\u'+('000'+c.charCodeAt(0).toString(16)).slice(-4))) } function b64ToJSON(encoded) {