fix(webui): email address not being lowercased
All checks were successful
Build / build (pull_request) Successful in 58s
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:
parent
4a2d863c9c
commit
9425180fd7
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user