From 9d74a08d9c1fbee0a342654c52301024d1c69bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Fridmansk=C3=BD?= Date: Tue, 31 Oct 2023 10:05:58 +0100 Subject: [PATCH] fix: image loaded --- src/components/Image/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Image/index.tsx b/src/components/Image/index.tsx index 7acf006..0894c24 100644 --- a/src/components/Image/index.tsx +++ b/src/components/Image/index.tsx @@ -33,7 +33,7 @@ const StoryImage: FC = ( { } - if ( data.uri === story.sourceUrl && ( data.isVideo || videoDuration.value !== undefined ) ) { + if ( data.uri === story.sourceUrl && ( !data.isVideo || videoDuration.value !== undefined ) ) { onLoad( videoDuration.value );