mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
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
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ namespace Jellyfin.Server.Middleware
|
|||
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue