mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-24 14:35:49 +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 password = parsed.password?.trim()
|
||||||
const desiredInstanceName = parsed.instanceName?.trim()
|
const desiredInstanceName = parsed.instanceName?.trim()
|
||||||
const region = parsed.region?.trim()
|
const region = parsed.region?.trim()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user