فهرست منبع

Fix query log

Claus Vium 6 سال پیش
والد
کامیت
647adc51c8
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Emby.Server.Implementations/HttpServer/HttpListenerHost.cs

+ 1 - 1
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;
         }