We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
WiFimanager Branch/Release: Master
Esp8266/Esp32: Esp32
Hardware: ESP32-WROOM-32-D
Core Version: 2.0.14
I needed to inherit the Wifimanager class in my project and saw a problem when I tried to force the IP fields to be disabled.
On line 2968 of the WiFiManager.cpp file, I think someone forgot to add an “else” statement at the beginning of the line.
It is: _staShowDns = alwaysShow? 1: 0;
_staShowDns = alwaysShow? 1: 0;
and it should be: else _staShowDns = alwaysShow? 1: 0;
else _staShowDns = alwaysShow? 1: 0;
I hope I helped you with this.
Module: NodeMcu
Additional libraries: knolleary/PubSubClient@^2.8 bblanchon/ArduinoJson@^6.21.2
---
The text was updated successfully, but these errors were encountered:
Force remove DNS input from Captive portal issue tzapu#1733
ada77fd
No branches or pull requests
Basic Infos
Hardware
WiFimanager Branch/Release: Master
Esp8266/Esp32: Esp32
Hardware: ESP32-WROOM-32-D
Core Version: 2.0.14
Description
I needed to inherit the Wifimanager class in my project and saw a problem when I tried to force the IP fields to be disabled.
On line 2968 of the WiFiManager.cpp file, I think someone forgot to add an “else” statement at the beginning of the line.
It is:
_staShowDns = alwaysShow? 1: 0;
and it should be:
else _staShowDns = alwaysShow? 1: 0;
I hope I helped you with this.
Settings in IDE
Module: NodeMcu
Additional libraries:
knolleary/PubSubClient@^2.8
bblanchon/ArduinoJson@^6.21.2
Sketch
Debug Messages
The text was updated successfully, but these errors were encountered: