Commit 34e9e026 authored by Jonathan Swaelens's avatar Jonathan Swaelens
Browse files

:ambulance: fix(webauthn): Fix binary prefix

Fix binary prefix
Showing with 1 addition and 1 deletion
+1 -1
...@@ -127,7 +127,7 @@ function webauthnCheckRegistration() ...@@ -127,7 +127,7 @@ function webauthnCheckRegistration()
*/ */
function recursiveBase64StrToArrayBuffer(obj) function recursiveBase64StrToArrayBuffer(obj)
{ {
let prefix = '?BINARY?B?'; let prefix = '=?BINARY?B?';
let suffix = '?='; let suffix = '?=';
if (typeof obj === 'object') { if (typeof obj === 'object') {
for (let key in obj) { for (let key in obj) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment