mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
solve null point bug
This commit is contained in:
parent
2facf7a07d
commit
1bde3eb5b6
|
@ -53,7 +53,7 @@ namespace FastTunnel.Core
|
|||
private void OnAccept(Socket socket)
|
||||
{
|
||||
ConnectedSockets.Add(socket);
|
||||
OnClientsChange.Invoke(socket, ConnectedSockets.Count, false);
|
||||
OnClientsChange?.Invoke(socket, ConnectedSockets.Count, false);
|
||||
}
|
||||
|
||||
public void Listen(IListenerDispatcher requestDispatcher)
|
||||
|
|
Loading…
Reference in New Issue
Block a user