Continued work on media scheduler

This commit is contained in:
rainbow napkin 2025-01-28 09:43:39 -05:00
parent 9d01b4c962
commit d5a2a51be2
14 changed files with 415 additions and 54 deletions

View file

@ -57,7 +57,7 @@ class channel{
this.socket.on("error", console.log);
this.socket.on("queue", (data) => {
this.queue = data.queue;
this.queue = new Map(data.queue);
})
}
@ -74,7 +74,7 @@ class channel{
this.chatBox.handleClientInfo(data);
//Store queue for use by the queue panel
this.queue = data.queue;
this.queue = new Map(data.queue);
}
}