diff --git a/src/components/status.jsx b/src/components/status.jsx index 98ac7486..11b4d758 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -95,7 +95,14 @@ function Media({ media, showOriginal, onClick }) { style={{ backgroundColor: `rgb(${rgbAverageColor.join(',')})`, }} - onClick={onClick} + onClick={(e) => { + if (isGIF) { + try { + videoRef.current?.pause(); + } catch (e) {} + } + onClick(e); + }} onMouseEnter={() => { if (isGIF) { try {