mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 17:15:53 +03:00
[GH-ISSUE #416] handleWifiSave() headless issue #348
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#348
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 @suculent on GitHub (Sep 8, 2017).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/416
Hello, I'm receiving this weird issue on AutoConnect. It should be in STA mode but it switches to softAP and crashes.
Source (line 195):
github.com/suculent/thinx-lib-esp8266-arduinoc@9d598cc119/src/THiNXLib.cppWhat is my concern that the handleWifiSave() method which:
a) seems to send WiFi save page while there is no user connected at all in the station mode...
b) does not server->close(); the connection (may not be such an issue)
Log:
Stacktrace:
@suculent commented on GitHub (Sep 8, 2017):
I don't understand why this happens, when handleWifiSave is callback set only here:
@tablatronix commented on GitHub (Sep 8, 2017):
That is alot of stuff going on, that exception is typically an illegal memory access problem. You are gonna have to come up with a test case
@suculent commented on GitHub (Sep 8, 2017):
Should I use ArduinoUnit? I’m thinking about unit tests for my library as it becomes huge.
Question is, how could the handleWifiSave() happen at the first place. No captive portal client should be redirected to this without doing anything meaningful.
@tablatronix commented on GitHub (Oct 29, 2017):
I mean a minimal code to reproduce