fixes #1347 - Issue with subtitles when resuming using DLNA Play To

This commit is contained in:
Luke 2015-12-24 12:49:59 -05:00
parent 74b7a816f8
commit 5f944c57e6

View file

@ -269,7 +269,7 @@ namespace MediaBrowser.Model.Dlna
// HLS will preserve timestamps so we can just grab the full subtitle stream // HLS will preserve timestamps so we can just grab the full subtitle stream
long startPositionTicks = StringHelper.EqualsIgnoreCase(SubProtocol, "hls") long startPositionTicks = StringHelper.EqualsIgnoreCase(SubProtocol, "hls")
? 0 ? 0
: StartPositionTicks; : (this.PlayMethod == PlayMethod.Transcode ? StartPositionTicks : 0);
// First add the selected track // First add the selected track
if (SubtitleStreamIndex.HasValue) if (SubtitleStreamIndex.HasValue)