aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-02-27 19:55:25 +0100
committerClaus Vium <clausvium@gmail.com>2019-02-27 19:55:25 +0100
commit647adc51c8681113afbc2c45b7637cc2c50f11f0 (patch)
tree0a84db0d834e9dc7b06205f6aa8bc4a31b139b54 /Emby.Server.Implementations/HttpServer
parent1e97e4d462b13baace363be5304bec70940a81a1 (diff)
Fix query log
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 70753e563..fd46c0057 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -321,7 +321,7 @@ namespace Emby.Server.Implementations.HttpServer
string pagePathWithoutQueryString = url.Split(new[] { '?' }, StringSplitOptions.RemoveEmptyEntries)[0];
return newQueryString.Count > 0
- ? string.Format("{0}?{1}", pagePathWithoutQueryString, newQueryString)
+ ? $"{pagePathWithoutQueryString}?{newQueryString.Select(value => value.Key + " = " + string.Join(", ", value.Value))}"
: pagePathWithoutQueryString;
}