This commit is contained in:
Roland Gruber 2020-01-16 21:30:33 +01:00
parent 9a855266ab
commit 02770b7759
1 changed files with 1 additions and 1 deletions

View File

@ -1550,7 +1550,7 @@ window.lam.webauthn.authenticate = function(publicKey) {
* @returns base64 string
*/
window.lam.webauthn.arrayToBase64String = function(input) {
return btoa(String.fromCharCode(...input));
return btoa(String.fromCharCode.apply(null, input));
}
/**