From 6aae7e9c3d9e09ee7471010dbe81cce10a635556 Mon Sep 17 00:00:00 2001 From: "tarun.kumar" Date: Wed, 9 Sep 2026 12:51:14 +0530 Subject: [PATCH] fix(wifi) : Preserve SSID and authmode across disconnect for blacklist recovery --- components/esp_wifi/wifi_apps/roaming_app/src/roaming_app.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/esp_wifi/wifi_apps/roaming_app/src/roaming_app.c b/components/esp_wifi/wifi_apps/roaming_app/src/roaming_app.c index 29b331a464e..fe28e21f977 100644 --- a/components/esp_wifi/wifi_apps/roaming_app/src/roaming_app.c +++ b/components/esp_wifi/wifi_apps/roaming_app/src/roaming_app.c @@ -608,8 +608,6 @@ static void roaming_app_set_disconnected_state(const wifi_event_sta_disconnected g_roaming_app.current_bss.btm_support = false; g_roaming_app.current_bss.rrm_support = false; g_roaming_app.current_bss.ap.rssi = -128; - g_roaming_app.current_bss.ap.authmode = WIFI_AUTH_OPEN; - memset(g_roaming_app.current_bss.ap.ssid, 0, sizeof(g_roaming_app.current_bss.ap.ssid)); if (disconn) { memcpy(g_roaming_app.current_bss.ap.bssid, disconn->bssid, ETH_ALEN);