Fixed removing/adding to library, label tag

This commit is contained in:
exttex
2020-11-05 22:00:29 +01:00
parent 7eb047bae1
commit 416d65f310
38 changed files with 514 additions and 180 deletions

View File

@ -321,6 +321,13 @@ new Vue({
await this.savePlaybackInfo();
return;
}
//End of queue
if (this.queue.index+1 == this.queue.data.length) {
this.state = 1;
return;
}
//Skip to next track
this.skip(1);
this.savePlaybackInfo();