mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-11 16:26:20 +00:00
Update src/client/lazy-app/util/index.ts
Co-authored-by: Jake Archibald <jaffathecake@gmail.com>
This commit is contained in:
@@ -244,9 +244,9 @@ export async function builtinDecode(
|
||||
): Promise<ImageData> {
|
||||
// If WebCodecs are supported, use that.
|
||||
if (await WebCodecs.isTypeSupported(mimeType)) {
|
||||
if (signal.aborted) return Promise.reject('Aborted');
|
||||
assertSignal(signal);
|
||||
try {
|
||||
return await WebCodecs.decode(blob, mimeType);
|
||||
return await abortable(signal, WebCodecs.decode(blob, mimeType));
|
||||
} catch (e) {}
|
||||
}
|
||||
assertSignal(signal);
|
||||
|
||||
Reference in New Issue
Block a user