Browse Source

Fixed error when video is not available (#4383)

WRadoslaw 1 year ago
parent
commit
021be18ce8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/atlas/src/views/viewer/VideoView/VideoView.tsx

+ 3 - 1
packages/atlas/src/views/viewer/VideoView/VideoView.tsx

@@ -251,7 +251,9 @@ export const VideoView: FC = () => {
       return
     }
 
-    const artwork: MediaImage[] = thumbnailUrls ? [{ src: thumbnailUrls[0], type: 'image/webp', sizes: '640x360' }] : []
+    const artwork: MediaImage[] = thumbnailUrls?.[0]
+      ? [{ src: thumbnailUrls[0], type: 'image/webp', sizes: '640x360' }]
+      : []
 
     navigator.mediaSession.metadata = new MediaMetadata({
       title: video.title || '',