[지라이슈없음] vod 일시정지 후 영상 재진입 시 프로그레스바가 사라지던 현상 수정

This commit is contained in:
hyunwoo93.cha
2024-11-14 15:52:47 +09:00
parent e29d9e27bf
commit ad1f574a71

View File

@@ -1406,12 +1406,17 @@ const PlayerPanel = ({
panelInfo.modalContainerId
);
}
} else if (
isOnTop &&
!panelInfo.modal &&
videoPlayer.current?.getMediaState()?.paused
) {
videoPlayer.current.play();
} else if (isOnTop && !panelInfo.modal && videoPlayer.current) {
if (videoPlayer.current?.getMediaState()?.paused) {
videoPlayer.current.play();
}
if (
videoPlayer.current.areControlsVisible &&
!videoPlayer.current.areControlsVisible()
) {
videoPlayer.current.showControls();
}
}
}, [panelInfo, isOnTop]);