update the total song length from the socket messages

This commit is contained in:
Kristy Fournier 2026-03-08 13:27:17 -04:00
parent f95ecc78d4
commit 0099f17d34
2 changed files with 3 additions and 2 deletions

View file

@ -664,7 +664,8 @@ socket.on("timeUpdate", function(data) {
// console.log("recieved data from timeUpdate");
// console.log(data);
playlistElapsedSeconds = data["elapsedTime"];
currentlyPlaying = data["playingState"]
currentlyPlaying = data["playingState"];
playlistSongLength = data["songLength"]
});
socket.on("skipSong",() => {