mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Don't sort media streams for media info
This way it keeps a logical order i.e. video info first, followed by audio and subtitles
This commit is contained in:
parent
f2aeb2a23f
commit
38dd4c5f43
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ function getMediaSourceHtml(user, item, version) {
|
|||
const size = `${(version.Size / (1024 * 1024)).toFixed(0)} MB`;
|
||||
html += `${createAttribute(globalize.translate('MediaInfoSize'), size)}<br/>`;
|
||||
}
|
||||
version.MediaStreams.sort(itemHelper.sortTracks);
|
||||
|
||||
for (const stream of version.MediaStreams) {
|
||||
if (stream.Type === 'Data') {
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue