Skip to content

Commit 6be74ec

Browse files
committed
Fix softAP issue introduced in 40da463 (#1054)
1 parent fce9703 commit 6be74ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WiFi/src/ESP8266WiFi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ void ESP8266WiFiClass::softAP(const char* ssid, const char* passphrase, int chan
360360

361361
struct softap_config conf_current;
362362
wifi_softap_get_config(&conf_current);
363-
if (!softap_config_equal(conf, conf_current))
363+
if (softap_config_equal(conf, conf_current))
364364
{
365365
DEBUGV("softap config unchanged");
366366
return;

0 commit comments

Comments
 (0)