mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
Replace some usage of QueryParamCollection
This commit is contained in:
@@ -154,7 +154,7 @@ namespace Emby.Server.Implementations.Services
|
||||
{
|
||||
if (name == null) continue; //thank you ASP.NET
|
||||
|
||||
var values = request.QueryString.GetValues(name);
|
||||
var values = request.QueryString[name];
|
||||
if (values.Count == 1)
|
||||
{
|
||||
map[name] = values[0];
|
||||
|
||||
Reference in New Issue
Block a user