Fixed bug in playlist manager initialization

This commit is contained in:
rainbow napkin 2025-09-06 00:48:47 -04:00
parent f34ad4829c
commit edbc9909a1
100 changed files with 132 additions and 125 deletions

View file

@ -60,8 +60,8 @@ class activeChannel{
/**
* Child Playlist Handler Object
*/
this.playlistHandler = new playlistHandler(server, chanDB, this);
this.playlistHandler = new playlistHandler(server, this);
/**
* Child Chat Buffer Object
*/

View file

@ -163,6 +163,8 @@ class playlistHandler{
}
//The UUID is only validated, not processed so we just return the new time :P
console.log(this.channel)
console.log(this.channel.queue);
return this.channel.queue.getStart(data.start)
}