diff --git a/js/utils.js b/js/utils.js index 66094f0..1daa479 100644 --- a/js/utils.js +++ b/js/utils.js @@ -278,7 +278,7 @@ Base64 = (function () { let b64_str = ""; let i = 0; while (i < this.length) { - b64_str += Base64.fromIntV(this.slice(i, i + 6), 1); + b64_str += Base64.fromIntN(this.slice(i, i + 6), 1); i += 6; } @@ -997,4 +997,4 @@ if (screen.width < 992) { } scrollPos = document.documentElement.scrollTop; }); -} \ No newline at end of file +}