1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-05-02 23:44:07 +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; break;
case "song_change": case "song_change":
songChange(obj.data.title, obj.data.artist, obj.data.album, obj.data.uri); songChange(obj.data.title, obj.data.artist, obj.data.album, obj.data.uri);
break; break;
case 'mpdhost': case 'mpdhost':
@ -829,7 +827,12 @@ function songChange(title, artist, album, uri) {
var pageTitle = 'myMPD: '; var pageTitle = 'myMPD: ';
if (typeof uri != 'undefined' && uri.length > 0) { 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+'")'); $('#album-cover').css('backgroundImage','url("'+coverImg+'")');
} }
if(typeof artist != 'undefined' && artist.length > 0 && artist != '-') { if(typeof artist != 'undefined' && artist.length > 0 && artist != '-') {