mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-09 06:02:24 +00:00
Self-documenting code
This commit is contained in:
@@ -622,18 +622,19 @@ namespace MediaBrowser.Api.Playback
|
||||
return null;
|
||||
}
|
||||
|
||||
if (!value.StartsWith("npt=", StringComparison.OrdinalIgnoreCase))
|
||||
const string Npt = "npt=";
|
||||
if (!value.StartsWith(Npt, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
throw new ArgumentException("Invalid timeseek header");
|
||||
}
|
||||
int index = value.IndexOf('-');
|
||||
if (index == -1)
|
||||
{
|
||||
value = value.Substring(4);
|
||||
value = value.Substring(Npt.Length);
|
||||
}
|
||||
else
|
||||
{
|
||||
value = value.Substring(4, index);
|
||||
value = value.Substring(Npt.Length, index);
|
||||
}
|
||||
|
||||
if (value.IndexOf(':') == -1)
|
||||
|
||||
Reference in New Issue
Block a user