Add delay before enabling ipv6 (#5256)

This commit is contained in:
Jimmy Hedman 2023-08-17 02:22:37 +02:00 committed by Jesse Hills
parent a27e72362a
commit cb66ce069e
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -486,7 +486,7 @@ void WiFiComponent::wifi_event_callback_(esphome_wifi_event_id_t event, esphome_
ESP_LOGV(TAG, "Event: Connected ssid='%s' bssid=" LOG_SECRET("%s") " channel=%u, authmode=%s", buf,
format_mac_addr(it.bssid).c_str(), it.channel, get_auth_mode_str(it.authmode));
#if LWIP_IPV6
WiFi.enableIpV6();
this->set_timeout(100, [] { WiFi.enableIpV6(); });
#endif /* LWIP_IPV6 */
break;