Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only reconnect if WiFi updated #1555

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions WiFiManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1858,6 +1858,7 @@ void WiFiManager::handleWifiSave() {
else {
page = getHTTPHead(FPSTR(S_titlewifisaved)); // @token titlewifisaved
page += FPSTR(HTTP_SAVED);
connect = true; //signal ready to connect/reset process in processConfigPortal
}

if(_showBack) page += FPSTR(HTTP_BACKBTN);
Expand All @@ -1869,8 +1870,6 @@ void WiFiManager::handleWifiSave() {
#ifdef WM_DEBUG_LEVEL
DEBUG_WM(DEBUG_DEV,F("Sent wifi save page"));
#endif

connect = true; //signal ready to connect/reset process in processConfigPortal
}

void WiFiManager::handleParamSave() {
Expand Down