mirror of https://github.com/VERT-sh/VERT.git
fix ide error
This commit is contained in:
parent
80d93b62c3
commit
303b8bbd09
|
@ -63,7 +63,7 @@ export class VipsConverter extends Converter {
|
||||||
|
|
||||||
if (res.type === "finished") {
|
if (res.type === "finished") {
|
||||||
log(["converters", this.name], `converted ${input.name} to ${to}`);
|
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") {
|
if (res.type === "error") {
|
||||||
|
|
Loading…
Reference in New Issue