mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-07 05:30:31 -06:00
fix: string coercion for email verify code
Some databases will automatically do this string coercion, but others will not. This commit ensures the value is always a string.
This commit is contained in:
@@ -343,7 +343,7 @@ module.exports = eggspress(['/signup'], {
|
||||
// uuid
|
||||
user_uuid,
|
||||
// email_confirm_code
|
||||
email_confirm_code,
|
||||
'' + email_confirm_code,
|
||||
// email_confirm_token
|
||||
email_confirm_token,
|
||||
// email_confirmed
|
||||
|
||||
Reference in New Issue
Block a user