mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
fixes #1347 - Issue with subtitles when resuming using DLNA Play To
This commit is contained in:
parent
c8536040ba
commit
07d0384e87
@ -269,7 +269,7 @@ namespace MediaBrowser.Model.Dlna
|
||||
// HLS will preserve timestamps so we can just grab the full subtitle stream
|
||||
long startPositionTicks = StringHelper.EqualsIgnoreCase(SubProtocol, "hls")
|
||||
? 0
|
||||
: StartPositionTicks;
|
||||
: (this.PlayMethod == PlayMethod.Transcode ? StartPositionTicks : 0);
|
||||
|
||||
// First add the selected track
|
||||
if (SubtitleStreamIndex.HasValue)
|
||||
|
Loading…
Reference in New Issue
Block a user