From d3d8e6c421fa509bbfe3de0d00f58f1c47be66a8 Mon Sep 17 00:00:00 2001 From: Junior Date: Fri, 18 Apr 2025 09:31:35 -0400 Subject: [PATCH] Move where history contents gets set further down the process --- js/minimal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/minimal.js b/js/minimal.js index c8b13e0..a185ebb 100755 --- a/js/minimal.js +++ b/js/minimal.js @@ -190,12 +190,12 @@ function getSongList() { volFromServer = true; $('#volume_slider').slider("value", data.volume); } - $('#history_contents').html(data.songlist); $('#playing_img').attr("src", data.currentsong.arturl); $('#playing_title').html(data.currentsong.title); $('#playing_artist').html(data.currentsong.artist); $('#playing_album').html(data.currentsong.album); $('#playing_year').html(data.currentsong.year); + $('#history_contents').html(data.songlist); updateChristmasButton(data.christmas); updateMuteButton(data.muted); $('#christmas_freq').val(data.christmasfreq);