From 6a59e4a9931b020306d94e4f3e9fcc61481c1346 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 9 Nov 2025 16:56:28 -0600 Subject: [PATCH] fixes --- esphome/components/wifi/wifi_component.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esphome/components/wifi/wifi_component.cpp b/esphome/components/wifi/wifi_component.cpp index cde98c3002..f134118eb8 100644 --- a/esphome/components/wifi/wifi_component.cpp +++ b/esphome/components/wifi/wifi_component.cpp @@ -1058,6 +1058,8 @@ bool WiFiComponent::transition_to_phase_(WiFiRetryPhase new_phase) { // Starting hidden mode - reset to first SSID to try all configured networks if (old_phase == WiFiRetryPhase::SCAN_CONNECTING) { this->selected_sta_index_ = 0; + // Clear scan results since we're trying hidden mode (no scan data to use) + this->scan_result_.clear(); } break;