fix: downloadall

This commit is contained in:
not-nullptr 2024-11-12 15:57:30 +00:00
parent f31032c610
commit 921bafb0c9
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@
// download the image only
const blob = URL.createObjectURL(
new Blob([dlFiles[0].input], {
type: files.files[0].file.type,
type: files.files[0].to.slice(1),
}),
);
const a = document.createElement("a");