Update Jellyfin.Server/Middleware/UrlDecodeQueryFeature.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
parent
133ce65e28
commit
371f8629b1
|
@ -76,7 +76,7 @@ namespace Jellyfin.Server.Middleware
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
pairs.Add(pair[0..i].ToString(), new StringValues(pair[(i + 1)..].ToString()));
|
pairs.Add(pair[..i].ToString(), new StringValues(pair[(i + 1)..].ToString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
_store = new QueryCollection(pairs);
|
_store = new QueryCollection(pairs);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user