summary refs log tree commit diff
path: root/api
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-07 23:37:05 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-07 23:37:05 +1000
commite06891d291d2631324791cbce0245e91a66ac2b6 (patch)
tree6011d89f120166cb7e03fc5809b1576239b7cd13 /api
parentSomehow the ID of demo user changed. Use email of demo instead (diff)
parentMerge branch 'master' into fix/claim_accounts (diff)
downloadserver-e06891d291d2631324791cbce0245e91a66ac2b6.tar.xz
Merge branch 'fix/claim_accounts' into slowcord
Diffstat (limited to 'api')
-rw-r--r--api/src/routes/users/@me/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts
index 902a2e45..add9417b 100644
--- a/api/src/routes/users/@me/index.ts
+++ b/api/src/routes/users/@me/index.ts
@@ -54,6 +54,8 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res:
 		body.email = adjustEmail(body.email);
 		if (!body.email)
 			throw FieldErrors({ email: { message: req.t("auth:register.EMAIL_INVALID"), code: "EMAIL_INVALID" } });
+		if (!body.password)
+			throw FieldErrors({ password: { message: req.t("auth:register.INVALID_PASSWORD"), code: "INVALID_PASSWORD" } })
 	}
 
 	if (body.new_password) {