Merge branch 'master' into mutex

This commit is contained in:
Max Isom 2021-12-17 18:36:31 -06:00
commit d07dc5baf4
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
14 changed files with 481 additions and 153 deletions

View file

@ -235,6 +235,10 @@ export default class {
return null;
}
/**
* Returns queue, not including the current song.
* @returns {QueuedSong[]}
*/
getQueue(): QueuedSong[] {
return this.queue.slice(this.queuePosition + 1);
}