From eb896dc5a534a6927a499157e48b8db3cfaf09b8 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 23 Feb 2023 17:01:33 +0800 Subject: [PATCH] original might be undefined?? --- src/components/media.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/media.jsx b/src/components/media.jsx index 64d3ac4f..659d5902 100644 --- a/src/components/media.jsx +++ b/src/components/media.jsx @@ -16,7 +16,7 @@ audio = Audio track function Media({ media, showOriginal, autoAnimate, onClick = () => {} }) { const { blurhash, description, meta, previewUrl, remoteUrl, url, type } = media; - const { original, small, focus } = meta || {}; + const { original = {}, small, focus } = meta || {}; const width = showOriginal ? original?.width : small?.width; const height = showOriginal ? original?.height : small?.height;