Bigger interval when going to next track because of error
This commit is contained in:
parent
84c3b531ad
commit
3950d0a2c1
|
@ -73,7 +73,10 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
errored: function () {
|
errored: function () {
|
||||||
this.$store.dispatch('player/trackErrored')
|
let self = this
|
||||||
|
setTimeout(
|
||||||
|
() => { self.$store.dispatch('player/trackErrored') }
|
||||||
|
, 1000)
|
||||||
},
|
},
|
||||||
sourceErrored: function () {
|
sourceErrored: function () {
|
||||||
this.sourceErrors += 1
|
this.sourceErrors += 1
|
||||||
|
|
Loading…
Reference in New Issue