add DisplayTitle to SubtitleStreamInfo
This commit is contained in:
parent
056b33714d
commit
dbf11dcbb3
|
@ -335,7 +335,8 @@ namespace MediaBrowser.Model.Dlna
|
|||
Name = stream.Language ?? "Unknown",
|
||||
Format = subtitleProfile.Format,
|
||||
Index = stream.Index,
|
||||
DeliveryMethod = subtitleProfile.Method
|
||||
DeliveryMethod = subtitleProfile.Method,
|
||||
DisplayTitle = stream.DisplayTitle
|
||||
};
|
||||
|
||||
if (info.DeliveryMethod == SubtitleDeliveryMethod.External)
|
||||
|
|
|
@ -7,6 +7,7 @@ namespace MediaBrowser.Model.Dlna
|
|||
public string Name { get; set; }
|
||||
public bool IsForced { get; set; }
|
||||
public string Format { get; set; }
|
||||
public string DisplayTitle { get; set; }
|
||||
public int Index { get; set; }
|
||||
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
|
||||
public bool IsExternalUrl { get; set; }
|
||||
|
|
Loading…
Reference in New Issue
Block a user