diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/authentication/controllers/user.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authentication/controllers/user.ts b/src/server/authentication/controllers/user.ts index 5ff44bda1..2f97f4d53 100644 --- a/src/server/authentication/controllers/user.ts +++ b/src/server/authentication/controllers/user.ts @@ -70,7 +70,7 @@ export let postSignup = (req: Request, res: Response, next: NextFunction) => { if (err) { return next(err); } if (existingUser) { if (existingUser) { - existingUser.update({ $set: { email: please_work } }, (err, res) => { }); + // existingUser.update({ $set: { email: please_work } }, (err, res) => { }); } req.flash("errors", "Account with that email address already exists."); return res.redirect("/signup"); |