We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c94a1e commit b682716Copy full SHA for b682716
1 file changed
resources/js/components/video/VideoPlayer.vue
@@ -696,8 +696,8 @@ const handleFullScreenChange = (e: Event) => {
696
};
697
698
const handlePlayerTimeUpdate = (event: any) => {
699
- // update time if not seeking, or paused
700
- if (isScrubbing.value || isLoading.value) return;
+ // update time if showing controls, or paused, or not seeking
+ if (isScrubbing.value || isLoading.value || !isShowingControls.value) return;
701
getBufferHealth();
702
703
// if playing or have not started playing yet, force seek (I do not remember what this is for)
0 commit comments