mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2025-12-13 19:12:10 +01:00
Update 1.0.9
Fix issues with long SSID names Make RSSI testing for remote receive tuning.
This commit is contained in:
parent
26714f71b7
commit
92ea0f6c99
7 changed files with 137 additions and 99 deletions
2
Web.cpp
2
Web.cpp
|
|
@ -961,7 +961,7 @@ void Web::begin() {
|
|||
bool reboot;
|
||||
if (ssid.compareTo(settings.WIFI.ssid) != 0) reboot = true;
|
||||
if (passphrase.compareTo(settings.WIFI.passphrase) != 0) reboot = true;
|
||||
if (!settings.WIFI.ssidExists(ssid.c_str())) {
|
||||
if (!settings.WIFI.ssidExists(ssid.c_str()) && ssid.length() > 0) {
|
||||
server.send(400, _encoding_json, "{\"status\":\"ERROR\",\"desc\":\"WiFi Network Does not exist\"}");
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue