mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-06 03:49:56 +02:00
remove base64 padding
This commit is contained in:
parent
a0726ecd23
commit
d75f4b0f9f
1 changed files with 1 additions and 1 deletions
|
@ -2072,7 +2072,7 @@ window.lam.webauthn.authenticate = function(publicKey) {
|
|||
* @returns base64 string
|
||||
*/
|
||||
window.lam.webauthn.arrayToBase64String = function(input) {
|
||||
return btoa(String.fromCharCode.apply(null, input));
|
||||
return btoa(String.fromCharCode.apply(null, input)).replaceAll("=", "");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue