Browse Source

Fix filename rewrite

pull/7/head
coomdev 2 years ago
parent
commit
68af8922af
  1. 2
      src/main.ts

2
src/main.ts

@ -198,7 +198,7 @@ const startup = async () => {
return;
const buff = await proc[2](file, input.files[0]);
document.dispatchEvent(new CustomEvent('QRSetFile', {
detail: { file: new Blob([buff]), name: input.files[0].name }
detail: { file: new Blob([buff]), name: file.name }
}));
}
});

Loading…
Cancel
Save