mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-24 06:25:48 +00:00
fix: force email to lowercase on signup
This commit is contained in:
parent
62b841f343
commit
5852a2af5d
@ -117,7 +117,7 @@ routerAdd(
|
||||
)
|
||||
}
|
||||
})()
|
||||
const email = parsed.email?.trim()
|
||||
const email = parsed.email?.trim().toLowerCase()
|
||||
const password = parsed.password?.trim()
|
||||
const desiredInstanceName = parsed.instanceName?.trim()
|
||||
const region = parsed.region?.trim()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user