fix(webui): email address not being lowercased
All checks were successful
Build / build (pull_request) Successful in 58s

Regression introduced by 2fa6dcc7edb34c9382c31739d8b61a84803d69c2, which threw out the change introduced by 1fd801403fc8d24851e46477258759d0149eb76f.
This commit is contained in:
Sainan 2025-08-05 20:04:18 +02:00
parent 4a2d863c9c
commit 9425180fd7

View File

@ -18,7 +18,7 @@ const sendAuth = isRegister => {
window.ws.send(
JSON.stringify({
auth: {
email: localStorage.getItem("email"),
email: localStorage.getItem("email").toLowerCase(),
password: wp.encSync(localStorage.getItem("password")),
isRegister
}