Browse Source

Handle image rendering error for thumbnails

pull/519/head
mrjvs 2 years ago
parent
commit
ef9eaf074e
  1. 1
      src/components/player/internals/ThumbnailScraper.tsx

1
src/components/player/internals/ThumbnailScraper.tsx

@ -92,6 +92,7 @@ class ThumnbnailWorker {
); );
const imgUrl = this.canvasEl.toDataURL(); const imgUrl = this.canvasEl.toDataURL();
if (this.interrupted) return; if (this.interrupted) return;
if (imgUrl === "data:," || !imgUrl) return; // failed image rendering
this.cb({ this.cb({
at, at,

Loading…
Cancel
Save