mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
use stream id's to close streams
This commit is contained in:
parent
8bf5fc899c
commit
ad2a1b493d
4 changed files with 23 additions and 9 deletions
|
@ -1456,6 +1456,19 @@
|
|||
|
||||
}
|
||||
|
||||
if (options.showProgramAirInfo) {
|
||||
|
||||
var date = parseISO8601Date(item.StartDate, { toLocal: true });
|
||||
|
||||
var text = item.StartDate ?
|
||||
date.toLocaleString() :
|
||||
'';
|
||||
|
||||
lines.push(text || ' ');
|
||||
|
||||
lines.push(item.ChannelName || ' ');
|
||||
}
|
||||
|
||||
html += LibraryBrowser.getCardTextLines(lines, cssClass, !options.overlayText);
|
||||
|
||||
if (options.overlayText) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue