wjdiewhjaksjkasdjkas

This commit is contained in:
ayunami2000 2022-10-02 21:41:04 -04:00
parent 0381621d2d
commit 14f8ea7868

View File

@ -87,7 +87,7 @@
for (const file of fileList) { for (const file of fileList) {
progressBar.value++; progressBar.value++;
if (file.type != 'FILE') continue; if (file.type != 'FILE') continue;
zip.file(file.name, file.data); // todo: check if it'll accept a blob as input zip.file(file.name, file.data);
} }
zip.generateAsync({type: 'blob'}).then(function(content) { zip.generateAsync({type: 'blob'}).then(function(content) {