handle base64 & binary images

This commit is contained in:
Alex Adam 2020-06-16 17:14:27 +03:00
parent 43dd4aefda
commit 21ccfcf766
2 changed files with 18 additions and 10 deletions

View file

@ -379,7 +379,8 @@ function deferredAddZip(url, filename) {
extractedImages.push({
filename: filename,
data: base64ArrayBuffer(data)
isBinary: true,
data: data
});
deferred.resolve();
}