Verify paused player before autoplaying next video (#1089)
This prevents the autoplay from playing the next video if the current video gets manually replayed by the user
This commit is contained in:
parent
7eda649293
commit
a26750aa2e
|
@ -842,7 +842,10 @@ export default Vue.extend({
|
|||
const nextVideoInterval = this.defaultInterval
|
||||
if (this.watchingPlaylist) {
|
||||
this.playNextTimeout = setTimeout(() => {
|
||||
const player = this.$refs.videoPlayer.player
|
||||
if (player !== null && player.paused()) {
|
||||
this.$refs.watchVideoPlaylist.playNextVideo()
|
||||
}
|
||||
}, nextVideoInterval * 1000)
|
||||
|
||||
this.showToast({
|
||||
|
@ -857,6 +860,8 @@ export default Vue.extend({
|
|||
})
|
||||
} else if (this.playNextVideo) {
|
||||
this.playNextTimeout = setTimeout(() => {
|
||||
const player = this.$refs.videoPlayer.player
|
||||
if (player !== null && player.paused()) {
|
||||
const nextVideoId = this.recommendedVideos[0].videoId
|
||||
this.$router.push(
|
||||
{
|
||||
|
@ -866,6 +871,7 @@ export default Vue.extend({
|
|||
this.showToast({
|
||||
message: this.$t('Playing Next Video')
|
||||
})
|
||||
}
|
||||
}, 5000)
|
||||
|
||||
this.showToast({
|
||||
|
|
Loading…
Reference in New Issue