aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-27 13:35:37 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-27 13:44:32 -0500
commitddf7fdbcef9c987092a7591848801f28aa5baedd (patch)
tree0aaf9ebc7f5bef11b0d4409332f6d071ee5c7896 /MediaBrowser.Server.Implementations/HttpServer
parentc167f792383e9f2cff320efc840c42efe7fbbdbb (diff)
fixes #1421 - LogRequest() in WebSocketSharpListener broken for Reports
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
index 8d8d7f6f7..038116703 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -290,7 +290,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
var operationName = httpReq.OperationName;
var localPath = url.LocalPath;
- var urlString = url.ToString();
+ var urlString = url.OriginalString;
var enableLog = EnableLogging(urlString);
if (enableLog)