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:35:37 -0500 |
| commit | 0474a225c4347e2eee86b66b123f44f63b3667d7 (patch) | |
| tree | f040ae17a7bd6dd767b639e0deace5b134c6d471 /MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs | |
| parent | 371e78a39697ef598a119169f2a2341d4ff2c5d1 (diff) | |
fixes #1421 - LogRequest() in WebSocketSharpListener broken for Reports
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs')
| -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) |
