Fix thumbnail generation when offscreen canvas fails (#9272)

pull/28217/head
Michael Telatynski 2022-09-13 13:34:35 +01:00 committed by GitHub
parent f67b8d0d32
commit b1cecccb57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -92,9 +92,8 @@ export async function createThumbnail(
context.drawImage(element, 0, 0, targetWidth, targetHeight); context.drawImage(element, 0, 0, targetWidth, targetHeight);
let thumbnailPromise: Promise<Blob>; let thumbnailPromise: Promise<Blob>;
if (canvas instanceof window.OffscreenCanvas) {
if (window.OffscreenCanvas) { thumbnailPromise = canvas.convertToBlob({ type: mimeType });
thumbnailPromise = (canvas as OffscreenCanvas).convertToBlob({ type: mimeType });
} else { } else {
thumbnailPromise = new Promise<Blob>(resolve => (canvas as HTMLCanvasElement).toBlob(resolve, mimeType)); thumbnailPromise = new Promise<Blob>(resolve => (canvas as HTMLCanvasElement).toBlob(resolve, mimeType));
} }