🐛 fix: Queue not playing next song

This commit is contained in:
2024-07-05 10:50:22 +07:00
parent 765b3c64f0
commit 3f00ec31b7
4 changed files with 28 additions and 3 deletions

View File

@@ -49,6 +49,12 @@ export class Player {
this.playerEvent.emit("play", information);
}
public startCurrentStream() {
if (this._stream) {
this._stream.start();
}
}
public endCurrentStream() {
if (this._stream) {
this._stream.destroy();