mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
- fix ArgumentOutOfRangeException at MediaBrowser.Api.Playback.BaseStreamingService.ParseTimeSeekHeader (second substring argument is length)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user