Bigger interval when going to next track because of error

This commit is contained in:
Eliot Berriot 2018-04-22 11:28:13 +02:00
parent 84c3b531ad
commit 3950d0a2c1
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 4 additions and 1 deletions

View File

@ -73,7 +73,10 @@ export default {
},
methods: {
errored: function () {
this.$store.dispatch('player/trackErrored')
let self = this
setTimeout(
() => { self.$store.dispatch('player/trackErrored') }
, 1000)
},
sourceErrored: function () {
this.sourceErrors += 1