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:
Svallinn 2021-03-06 20:09:13 +00:00 committed by GitHub
parent 7eda649293
commit a26750aa2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 10 deletions

View File

@ -842,7 +842,10 @@ export default Vue.extend({
const nextVideoInterval = this.defaultInterval
if (this.watchingPlaylist) {
this.playNextTimeout = setTimeout(() => {
this.$refs.watchVideoPlaylist.playNextVideo()
const player = this.$refs.videoPlayer.player
if (player !== null && player.paused()) {
this.$refs.watchVideoPlaylist.playNextVideo()
}
}, nextVideoInterval * 1000)
this.showToast({
@ -857,15 +860,18 @@ export default Vue.extend({
})
} else if (this.playNextVideo) {
this.playNextTimeout = setTimeout(() => {
const nextVideoId = this.recommendedVideos[0].videoId
this.$router.push(
{
path: `/watch/${nextVideoId}`
}
)
this.showToast({
message: this.$t('Playing Next Video')
})
const player = this.$refs.videoPlayer.player
if (player !== null && player.paused()) {
const nextVideoId = this.recommendedVideos[0].videoId
this.$router.push(
{
path: `/watch/${nextVideoId}`
}
)
this.showToast({
message: this.$t('Playing Next Video')
})
}
}, 5000)
this.showToast({