From bc87674b34fc2bcc5bc6a7ab756b1baf373b293f Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Tue, 7 May 2019 11:47:53 +0200 Subject: [PATCH] Fixed error not hidden when playing next track --- front/src/components/audio/Player.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index 0c451bdac..2086c0d41 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -575,6 +575,7 @@ export default { this.$store.commit('player/isLoadingAudio', true) if (this.playing) { this.soundId = this.currentSound.play() + this.$store.commit('player/errored', false) this.$store.commit('player/playing', true) this.observeProgress(true) }