1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-01-27 01:14:53 +00:00

Add cover for http stream

This commit is contained in:
jcorporation 2018-05-24 01:07:34 +01:00
parent 2c4f0fbe7e
commit 2c27cbc037
2 changed files with 6 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -518,8 +518,6 @@ function webSocketConnect() {
}
break;
case "song_change":
songChange(obj.data.title, obj.data.artist, obj.data.album, obj.data.uri);
break;
case 'mpdhost':
@ -829,7 +827,12 @@ function songChange(title, artist, album, uri) {
var pageTitle = 'myMPD: ';
if (typeof uri != 'undefined' && uri.length > 0) {
var coverImg='/library/'+uri.replace(/\/[^\/]+$/,'\/folder.jpg');
var coverImg='';
if (uri.indexOf('http://') == 0) {
coverImg='/assets/httpstream.png';
} else {
coverImg='/library/'+uri.replace(/\/[^\/]+$/,'\/folder.jpg');
}
$('#album-cover').css('backgroundImage','url("'+coverImg+'")');
}
if(typeof artist != 'undefined' && artist.length > 0 && artist != '-') {