Skip to content

Commit d1e395e

Browse files
authored
Merge pull request #615 from xnorbi/master
Fixed: Waiting for connection result with time out issue
2 parents 286e5d1 + f1e657e commit d1e395e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WiFiManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ uint8_t WiFiManager::waitForConnectResult() {
332332
keepConnecting = false;
333333
DEBUG_WM (F("Connection timed out"));
334334
}
335-
if (status == WL_CONNECTED || status == WL_CONNECT_FAILED) {
335+
if (status == WL_CONNECTED) {
336336
keepConnecting = false;
337337
}
338338
delay(100);

0 commit comments

Comments
 (0)