Spotify now starts playing the latest song if the queue was empty before and then a song was added

This commit is contained in:
Jurn Wubben 2026-02-01 18:47:42 +01:00
parent e9fdc05c2d
commit 63dec0ede2
2 changed files with 13 additions and 4 deletions

View file

@ -231,9 +231,9 @@ class SpotiQueue {
this.socket && this.socket.readyState === WebSocket.OPEN &&
!this.startedPlaying
) {
Spicetify.Player.pause();
console.log("[SpotiQueue] Requesting new song...");
this.send({ c: "next_song" });
Spicetify.Player.pause();
}
this.startedPlaying = false;
});