mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 13:44:22 -04:00
- fix ArgumentOutOfRangeException at MediaBrowser.Api.Playback.BaseStreamingService.ParseTimeSeekHeader (second substring argument is length)
This commit is contained in:
parent
efaa668158
commit
b711ece829
@ -634,7 +634,7 @@ namespace MediaBrowser.Api.Playback
|
||||
}
|
||||
else
|
||||
{
|
||||
value = value.Substring(Npt.Length, index);
|
||||
value = value.Substring(Npt.Length, index - Npt.Length);
|
||||
}
|
||||
|
||||
if (value.IndexOf(':') == -1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user