Skip to content

Commit

Permalink
0.8.146
Browse files Browse the repository at this point in the history
* fix redirect after login
  • Loading branch information
lumapu committed Sep 23, 2024
1 parent 8b1d734 commit 4c5c088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* fix reset ticker #1754
* disable MqTT second and minute ticker on network loss
* converted many `std::bind` to its lambda pendant
* fix redirect after login

## 0.8.145 - 2024-09-22
* fix NTP related issues #1748 #1752
Expand Down
2 changes: 1 addition & 1 deletion src/web/web.h
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class Web {
if (request->args() > 0) {
if (String(request->arg("pwd")) == String(mConfig->sys.adminPwd)) {
mApp->unlock(request->client()->remoteIP().toString().c_str(), true);
request->redirect("/");
request->redirect("/index");
}
}

Expand Down

0 comments on commit 4c5c088

Please sign in to comment.