Update Jellyfin.Server/Middleware/UrlDecodeQueryFeature.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/5990/head
BaronGreenback 3 years ago committed by GitHub
parent 133ce65e28
commit 371f8629b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save