From d95d9c193e108c26f39f4ba0edfe0fb8e827aa65 Mon Sep 17 00:00:00 2001 From: travis-farmer Date: Fri, 3 Nov 2023 07:48:12 -0400 Subject: [PATCH] allows client, but immidiatly drops client --- Wifi_NINA.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wifi_NINA.cpp b/Wifi_NINA.cpp index c662e13..19efc14 100644 --- a/Wifi_NINA.cpp +++ b/Wifi_NINA.cpp @@ -378,7 +378,7 @@ void WifiNINA::checkForNewClient() { for (byte clientId=0; clientIdconnected()) { DIAG(F("Remove client %d"), clientId); CommandDistributor::forget(clientId); - delete c; // we have now finished with this client + //delete c; // we have now finished with this client clients[clientId]=nullptr; } }