diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-02-26 19:48:18 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-02-26 22:11:21 +0100 |
| commit | 5a7cca9d1bdc5280626a6654cdbd8c0d45016af5 (patch) | |
| tree | ca1e1904c863a4e59d839ab301737713fd2719b7 /Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs | |
| parent | d6c6f3c10cff68b11df884be502c58a17da0d332 (diff) | |
Fix websockets and RawUrl
Diffstat (limited to 'Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs')
| -rw-r--r-- | Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs b/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs index 9c5b2b083..b07c4bfeb 100644 --- a/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs +++ b/Emby.Server.Implementations/SocketSharp/WebSocketSharpRequest.cs @@ -45,7 +45,7 @@ namespace Emby.Server.Implementations.SocketSharp public object Dto { get; set; } - public string RawUrl => request.Path.ToString(); + public string RawUrl => request.GetEncodedPathAndQuery(); public string AbsoluteUri => request.GetDisplayUrl().TrimEnd('/'); |
