[Modify] Put it back

This commit is contained in:
sta 2018-07-04 20:11:47 +09:00
parent d1c5f0b334
commit eedd814429

View File

@ -319,7 +319,9 @@ namespace WebSocketSharp.Server
/// </exception>
public string Protocol {
get {
return _protocol ?? String.Empty;
return _websocket != null
? _websocket.Protocol
: (_protocol ?? String.Empty);
}
set {