Fix download media (v1.13.2)

This commit is contained in:
Pedro Lopez
2021-07-09 03:08:52 -04:00
parent b13dea0339
commit 4afff38713
42 changed files with 83 additions and 83 deletions

View File

@@ -350,7 +350,7 @@ exports.LoadUtils = () => {
});
};
window.WWebJS.arrayBufferToBase64 = async (arrayBuffer) => {
window.WWebJS.arrayBufferToBase64 = (arrayBuffer) => {
let binary = '';
const bytes = new Uint8Array( arrayBuffer );
const len = bytes.byteLength;