1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

display current program info

This commit is contained in:
Luke Pulverenti 2015-08-31 01:30:38 -04:00
parent 2af957e65d
commit 109e61ec65

View file

@ -1153,6 +1153,12 @@
else if (item.Type == 'MusicArtist') {
textlines.push(' ');
}
else if (item.Type == 'TvChannel') {
if (item.CurrentProgram) {
textlines.push(LibraryBrowser.getPosterViewDisplayName(item.CurrentProgram));
}
}
else {
textlines.push(LibraryBrowser.getMiscInfoHtml(item));
}