فهرست منبع

update hls subtitle display name

Luke Pulverenti 9 سال پیش
والد
کامیت
5bd44644cc
1فایلهای تغییر یافته به همراه1 افزوده شده و 3 حذف شده
  1. 1 3
      MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs

+ 1 - 3
MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs

@@ -572,13 +572,11 @@ namespace MediaBrowser.Api.Playback.Hls
             {
                 const string format = "#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID=\"subs\",NAME=\"{0}\",DEFAULT={1},FORCED={2},AUTOSELECT=YES,URI=\"{3}\",LANGUAGE=\"{4}\"";
 
-                var name = stream.Language;
+                var name = stream.DisplayTitle;
 
                 var isDefault = selectedIndex.HasValue && selectedIndex.Value == stream.Index;
                 var isForced = stream.IsForced;
 
-                if (string.IsNullOrWhiteSpace(name)) name = stream.Codec ?? "Unknown";
-
                 var url = string.Format("{0}/Subtitles/{1}/subtitles.m3u8?SegmentLength={2}&api_key={3}",
                     state.Request.MediaSourceId,
                     stream.Index.ToString(UsCulture),