mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1733] Force remove DNS input from Captive portal #1468
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#1468
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JuniorLopasso on GitHub (Apr 10, 2024).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1733
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