diff --git a/src/features/video/index.tsx b/src/features/video/index.tsx index 845c50dd5..e6cedd80a 100644 --- a/src/features/video/index.tsx +++ b/src/features/video/index.tsx @@ -469,7 +469,7 @@ const Video: React.FC = ({ }; const handleTogglePlay = () => { - if (!isMobile) togglePlay(); + if (!isMobile || paused || hovered) togglePlay(); }; const progress = (currentTime / duration) * 100;