1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 04:12:23 +01:00

proceed if AP mode is set up (#6631)

This commit is contained in:
Samuel Sieb
2024-05-06 20:44:36 -07:00
committed by GitHub
parent 1e196bac98
commit 5edf4970bd

View File

@@ -694,7 +694,7 @@ void WiFiComponent::retry_connect() {
} }
bool WiFiComponent::can_proceed() { bool WiFiComponent::can_proceed() {
if (!this->has_sta() || this->state_ == WIFI_COMPONENT_STATE_DISABLED) { if (!this->has_sta() || this->state_ == WIFI_COMPONENT_STATE_DISABLED || this->ap_setup_) {
return true; return true;
} }
return this->is_connected(); return this->is_connected();