update the total song length from the socket messages
This commit is contained in:
parent
f95ecc78d4
commit
0099f17d34
2 changed files with 3 additions and 2 deletions
|
|
@ -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",() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue