Modified a few for EndPointListener.cs
This commit is contained in:
@@ -170,10 +170,12 @@ namespace WebSocketSharp.Net
|
|||||||
if (_prefixes.Count > 0)
|
if (_prefixes.Count > 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (_unhandled != null && _unhandled.Count > 0)
|
var list = _unhandled;
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (_all != null && _all.Count > 0)
|
list = _all;
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
EndPointManager.RemoveEndPoint (this);
|
EndPointManager.RemoveEndPoint (this);
|
||||||
|
Reference in New Issue
Block a user