Skip to content

Commit f13774c

Browse files
committed
Remove condition on CallConnectionEventHandler()
1 parent 1cfe1bb commit f13774c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib60870/CS104/Server.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -907,11 +907,11 @@ internal void CallServerStateEventHandler(ServerStateEvent e)
907907

908908
internal void CallConnectionEventHandler(ClientConnection connection, ClientConnectionEvent e)
909909
{
910-
if (connection.State == MasterConnectionState.M_CON_STATE_STARTED)
911-
{
910+
// if (connection.State == MasterConnectionState.M_CON_STATE_STARTED)
911+
// {
912912
if (connectionEventHandler != null)
913913
connectionEventHandler(connectionEventHandlerParameter, connection, e);
914-
}
914+
// }
915915
}
916916

917917
internal void Activated(ClientConnection activeConnection)

0 commit comments

Comments
 (0)