Skip to content

Commit

Permalink
Don't send existing wifi password to config page
Browse files Browse the repository at this point in the history
  • Loading branch information
wvolz committed Mar 30, 2021
1 parent 67b84a5 commit a5dbcfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pio/lib/WiFiManagerKT/WiFiManagerKT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,8 @@ void WiFiManager::handleWifi()
page += FPSTR(HTTP_FORM_START1);
page += _ssid;
page += FPSTR(HTTP_FORM_START2);
page += _pass;
// don't send existing password to web
//page += _pass;
page += FPSTR(HTTP_FORM_START3);

char parLength[2];
Expand Down

0 comments on commit a5dbcfa

Please sign in to comment.