mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add DisplayTitle to media streams
This commit is contained in:
parent
e54e1697fd
commit
5712b78c3e
9 changed files with 72 additions and 20 deletions
|
@ -1557,6 +1557,10 @@
|
|||
attributes.push(createAttribute(Globalize.translate('MediaInfoTimestamp'), version.Timestamp));
|
||||
}
|
||||
|
||||
if (stream.DisplayTitle) {
|
||||
attributes.push(createAttribute('Title', stream.DisplayTitle));
|
||||
}
|
||||
|
||||
html += attributes.join('<br/>');
|
||||
|
||||
html += '</div>';
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
}
|
||||
|
||||
var opt = {
|
||||
name: name,
|
||||
name: stream.DisplayTitle || name,
|
||||
id: stream.Index
|
||||
};
|
||||
|
||||
|
@ -229,7 +229,7 @@
|
|||
}
|
||||
|
||||
var opt = {
|
||||
name: name,
|
||||
name: stream.DisplayTitle || name,
|
||||
id: stream.Index
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue