- fix ArgumentOutOfRangeException at MediaBrowser.Api.Playback.BaseStreamingService.ParseTimeSeekHeader (second substring argument is length)

This commit is contained in:
marius 2019-08-28 21:05:17 +03:00
parent efaa668158
commit b711ece829

View file

@ -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)