diff --git a/src/components/status.jsx b/src/components/status.jsx index a0f4c3b8..c60db56e 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -759,19 +759,10 @@ function Media({ media, showOriginal, onClick = () => {} }) { rgbAverageColor && `rgb(${rgbAverageColor.join(',')})`, }} onClick={(e) => { - if (isGIF) { - // Hmm, the videoRef might conflict here - if (showOriginal) { - try { - if (videoRef.current.paused) { - videoRef.current.play(); - } else { - videoRef.current.pause(); - } - } catch (e) {} - } else { + if (!showOriginal && isGIF) { + try { videoRef.current.pause(); - } + } catch (e) {} } onClick(e); }} @@ -791,19 +782,24 @@ function Media({ media, showOriginal, onClick = () => {} }) { }} > {showOriginal ? ( - +