[Modify] Do not decode

This commit is contained in:
sta 2018-11-18 21:37:36 +09:00
parent 656a3e3839
commit c60ad8e5f2

View File

@ -437,7 +437,7 @@ namespace WebSocketSharp.Server
string path, out WebSocketServiceHost host
)
{
path = HttpUtility.UrlDecode (path).TrimSlashFromEnd ();
path = path.TrimSlashFromEnd ();
lock (_sync)
return _hosts.TryGetValue (path, out host);