Captive portal show nearby WiFi with no ssid configured (#3748)

This commit is contained in:
anatoly-savchenkov 2022-08-31 01:19:43 +03:00 committed by GitHub
parent b2199d5464
commit 3120a0ba83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,8 +73,11 @@ void WiFiComponent::setup() {
ESP_LOGV(TAG, "Setting Output Power Option failed!");
}
#ifdef USE_CAPTIVE_PORTAL
if (captive_portal::global_captive_portal != nullptr)
if (captive_portal::global_captive_portal != nullptr) {
this->wifi_sta_pre_setup_();
this->start_scanning();
captive_portal::global_captive_portal->start();
}
#endif
}
#ifdef USE_IMPROV