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:
parent
2c4f0fbe7e
commit
2c27cbc037
BIN
htdocs/assets/httpstream.png
Normal file
BIN
htdocs/assets/httpstream.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
@ -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 != '-') {
|
||||
|
Loading…
Reference in New Issue
Block a user