We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8876b63 commit 0133cd6Copy full SHA for 0133cd6
websocket-sharp/Server/HttpServer.cs
@@ -927,8 +927,10 @@ private void processRequest (HttpListenerContext context)
927
928
private void processRequest (HttpListenerWebSocketContext context)
929
{
930
+ var path = context.RequestUri.AbsolutePath;
931
+
932
WebSocketServiceHost host;
- if (!_services.InternalTryGetServiceHost (context.RequestUri.AbsolutePath, out host)) {
933
+ if (!_services.InternalTryGetServiceHost (path, out host)) {
934
context.Close (HttpStatusCode.NotImplemented);
935
return;
936
}
0 commit comments