[Modify] Do not decode

This commit is contained in:
sta 2018-11-19 21:25:34 +09:00
parent c60ad8e5f2
commit df435e6478

View File

@ -542,7 +542,7 @@ namespace WebSocketSharp.Server
throw new ArgumentException (msg, "path");
}
path = HttpUtility.UrlDecode (path).TrimSlashFromEnd ();
path = path.TrimSlashFromEnd ();
lock (_sync) {
WebSocketServiceHost host;