mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
comment
This commit is contained in:
parent
9ee91faae4
commit
238aace4f1
@ -70,12 +70,9 @@ namespace MediaBrowser.Model.MediaInfo
|
|||||||
var orderStreams = streams
|
var orderStreams = streams
|
||||||
.Where(i => i.Type == type);
|
.Where(i => i.Type == type);
|
||||||
|
|
||||||
// For subs give a preference to text for performance
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(defaultLanguage))
|
if (string.IsNullOrEmpty(defaultLanguage))
|
||||||
{
|
{
|
||||||
return orderStreams.OrderBy(i => i.IsDefault)
|
return orderStreams.OrderBy(i => i.IsDefault)
|
||||||
.ThenBy(i => !i.IsGraphicalSubtitleStream)
|
|
||||||
.ThenBy(i => i.Index)
|
.ThenBy(i => i.Index)
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user