Fixed error not hidden when playing next track

This commit is contained in:
Eliot Berriot 2019-05-07 11:47:53 +02:00
parent 2c92825a08
commit bc87674b34
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 1 additions and 0 deletions

View File

@ -575,6 +575,7 @@ export default {
this.$store.commit('player/isLoadingAudio', true) this.$store.commit('player/isLoadingAudio', true)
if (this.playing) { if (this.playing) {
this.soundId = this.currentSound.play() this.soundId = this.currentSound.play()
this.$store.commit('player/errored', false)
this.$store.commit('player/playing', true) this.$store.commit('player/playing', true)
this.observeProgress(true) this.observeProgress(true)
} }