diff --git a/app/containers/message/Video.tsx b/app/containers/message/Video.tsx index 0a6e52224..0a6deec33 100644 --- a/app/containers/message/Video.tsx +++ b/app/containers/message/Video.tsx @@ -177,11 +177,11 @@ const Video = React.memo( showAttachment(videoCached); return; } - if (!loading) { + if (!loading && !cached) { handleDownload(); return; } - if (loading) { + if (loading && !cached) { handleCancelDownload(); return; }