We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b1d734 commit 4c5c088Copy full SHA for 4c5c088
src/CHANGES.md
@@ -4,6 +4,7 @@
4
* fix reset ticker #1754
5
* disable MqTT second and minute ticker on network loss
6
* converted many `std::bind` to its lambda pendant
7
+* fix redirect after login
8
9
## 0.8.145 - 2024-09-22
10
* fix NTP related issues #1748 #1752
src/web/web.h
@@ -339,7 +339,7 @@ class Web {
339
if (request->args() > 0) {
340
if (String(request->arg("pwd")) == String(mConfig->sys.adminPwd)) {
341
mApp->unlock(request->client()->remoteIP().toString().c_str(), true);
342
- request->redirect("/");
+ request->redirect("/index");
343
}
344
345
0 commit comments