From 59f8243a0d70885115fdedb86733e181862b3612 Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Mon, 4 Oct 2021 18:29:11 -0400 Subject: [PATCH] Do not show play button for undownloaded media --- ts/components/conversation/Image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/conversation/Image.tsx b/ts/components/conversation/Image.tsx index ede7825dee..00d125c438 100644 --- a/ts/components/conversation/Image.tsx +++ b/ts/components/conversation/Image.tsx @@ -251,7 +251,7 @@ export class Image extends React.Component { )} /> ) : null} - {!pending && playIconOverlay ? ( + {!pending && !hasNotDownloaded && playIconOverlay ? (