mitigate skipping on some library songs

This commit is contained in:
vapormusic 2022-02-13 17:51:58 +07:00
parent 5c56dfbcc3
commit 317a56e439
6 changed files with 13 additions and 5 deletions

View file

@ -3730,6 +3730,11 @@ const app = new Vue({
if (sellang.startsWith("en") && this.mk.storefrontId != "us") sellang = "en-gb"
return await sellang
}
},
skipToNextItem(){
// app.mk.skipToNextItem() is buggy somehow so use this
if (this.mk.queue.nextPlayableItemIndex != -1)
this.mk.changeToMediaAtIndex(this.mk.queue.nextPlayableItemIndex);
}
}
})