diff --git a/src/components/status.jsx b/src/components/status.jsx index 269afb9b..fac902d9 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -732,7 +732,9 @@ function Media({ media, showOriginal, onClick = () => {} }) { ); } else if (type === 'gifv' || type === 'video') { // 20 seconds, treat as a gif - const isGIF = type === 'gifv' && original.duration <= 20; + const shortDuration = original.duration <= 20; + const isGIF = type === 'gifv' || shortDuration; + const loopable = original.duration <= 60; return (