summary refs log tree commit diff
path: root/api/src/routes/users/@me
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-05-31 00:22:18 +1000
committerGitHub <noreply@github.com>2022-05-31 00:22:18 +1000
commit82216f1513a32e9eaa8622f759656e4c5fe52573 (patch)
treece527a07dfdceee20bd31010b0102b693d61b60b /api/src/routes/users/@me
parentAdded README, added more UDP decryption stuff (diff)
parentMerge pull request #759 from MaddyUnderStars/fix/respectRegisterConfig (diff)
downloadserver-ts-82216f1513a32e9eaa8622f759656e4c5fe52573.tar.xz
Merge branch 'fosscord:master' into maddyrtc
Diffstat (limited to 'api/src/routes/users/@me')
-rw-r--r--api/src/routes/users/@me/index.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts

index d32b44f9..1af413c4 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts
@@ -46,8 +46,6 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } - user.assign(body); - if (body.new_password) { if (!body.password && !user.email) { throw FieldErrors({ @@ -66,6 +64,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } + user.assign(body); await user.save(); // @ts-ignore