Skip to content

Commit 4c5c088

Browse files
committed
0.8.146
* fix redirect after login
1 parent 8b1d734 commit 4c5c088

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* fix reset ticker #1754
55
* disable MqTT second and minute ticker on network loss
66
* converted many `std::bind` to its lambda pendant
7+
* fix redirect after login
78

89
## 0.8.145 - 2024-09-22
910
* fix NTP related issues #1748 #1752

src/web/web.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ class Web {
339339
if (request->args() > 0) {
340340
if (String(request->arg("pwd")) == String(mConfig->sys.adminPwd)) {
341341
mApp->unlock(request->client()->remoteIP().toString().c_str(), true);
342-
request->redirect("/");
342+
request->redirect("/index");
343343
}
344344
}
345345

0 commit comments

Comments
 (0)