diff --git a/src/components/VideoPlayer/BaseVideoPlayer.tsx b/src/components/VideoPlayer/BaseVideoPlayer.tsx index 9249baa4743f..d177ef74ad1f 100644 --- a/src/components/VideoPlayer/BaseVideoPlayer.tsx +++ b/src/components/VideoPlayer/BaseVideoPlayer.tsx @@ -473,9 +473,10 @@ function BaseVideoPlayer({ videoPlayerRef.current?.setStatusAsync?.({rate: currentPlaybackSpeed}); }} onLoad={() => { - if (isCurrentlyURLSet && !isUploading) { - playVideo(); + if (!isCurrentlyURLSet || isUploading) { + return; } + playVideo(); }} onPlaybackStatusUpdate={handlePlaybackStatusUpdate} onFullscreenUpdate={handleFullscreenUpdate}