From 987fb4b2ec179119228a35d535b36c3d8d105a3b Mon Sep 17 00:00:00 2001 From: jcorporation Date: Mon, 7 May 2018 20:27:11 +0100 Subject: [PATCH] Remove doubled album entry in notification --- htdocs/js/mpd.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js index 9b52559..2745214 100644 --- a/htdocs/js/mpd.js +++ b/htdocs/js/mpd.js @@ -625,7 +625,7 @@ function webSocketConnect() { case "song_change": var coverImg='/library/'+obj.data.uri.replace(/\/[^\/]+$/,'\/folder.jpg'); - document.getElementById('album-cover').style.backgroundImage='url("'+coverImg+'")'; + $('#album-cover').css('backgroundImage','url("'+coverImg+'")'); $('#album').text(""); $('#artist').text(""); @@ -635,12 +635,6 @@ function webSocketConnect() { $('#currenttrack').text(" " + obj.data.title); var notification = "

" + obj.data.title + "

"; - - if(obj.data.album) { - $('#album').text(obj.data.album); - notification += obj.data.album + "
"; - } - if(obj.data.artist) { $('#artist').text(obj.data.artist); notification += obj.data.artist + "
";