fix ide error

This commit is contained in:
JovannMC 2025-01-03 16:00:06 +03:00
parent 80d93b62c3
commit 303b8bbd09
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export class VipsConverter extends Converter {
if (res.type === "finished") {
log(["converters", this.name], `converted ${input.name} to ${to}`);
return new VertFile(new File([res.output], input.name), to);
return new VertFile(new File([new Blob([new Uint8Array(res.output)])], input.name), to);
}
if (res.type === "error") {