diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-27 13:35:37 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-27 13:44:32 -0500 |
| commit | ddf7fdbcef9c987092a7591848801f28aa5baedd (patch) | |
| tree | 0aaf9ebc7f5bef11b0d4409332f6d071ee5c7896 /MediaBrowser.Server.Implementations/HttpServer | |
| parent | c167f792383e9f2cff320efc840c42efe7fbbdbb (diff) | |
fixes #1421 - LogRequest() in WebSocketSharpListener broken for Reports
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs | 2 |
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) |
