diff --git a/ts/components/StoryImage.tsx b/ts/components/StoryImage.tsx index 6032655b16cf..7dbb954118c7 100644 --- a/ts/components/StoryImage.tsx +++ b/ts/components/StoryImage.tsx @@ -47,9 +47,8 @@ export const StoryImage = ({ storyId, }: PropsType): JSX.Element | null => { const shouldDownloadAttachment = - !isDownloaded(attachment) && - !isDownloading(attachment) && - !hasNotResolved(attachment); + (!isDownloaded(attachment) && !isDownloading(attachment)) || + hasNotResolved(attachment); const videoRef = useRef(null);