Fix for internal uri of WebSocket class as a server

This commit is contained in:
sta
2014-01-07 14:19:58 +09:00
parent 08bdca8fe8
commit 7147cde22c
2 changed files with 11 additions and 7 deletions

View File

@@ -485,6 +485,9 @@ namespace WebSocketSharp.Server
return;
}
if (_uri.IsAbsoluteUri)
context.WebSocket.Url = new Uri (_uri, path);
host.StartSession (context);
}