* fix redirect after login
@ -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
## 0.8.145 - 2024-09-22
* fix NTP related issues #1748 #1752
@ -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");
}