Modified a few for EndPointListener.cs
This commit is contained in:
parent
328fd5d43d
commit
47e859f57f
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user