Quick fix for closing connection.

This commit is contained in:
lieght
2025-10-15 19:08:18 +02:00
parent 798005de2c
commit 5beebf9663

View File

@@ -34,7 +34,9 @@ public class NetworkingClientManager implements org.toop.framework.networking.in
@Override
public void run() {
if (networkClients.get(id) != null) {
NetworkingClient qClient = networkClients.get(id);
if (qClient != null) {
qClient.closeConnection();
networkClients.remove(id);
}