summary refs log tree commit diff
path: root/api/src/routes/users
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-04-23 10:57:49 +0300
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-04-23 10:57:49 +0300
commitec3c158269df31fa686fd6aea5a55f08839b1038 (patch)
tree185d1f588fe9577b2197801b5b04f379f82e4e73 /api/src/routes/users
parentbackfilling — first steps (diff)
parenttext+voice code is already there (diff)
downloadserver-ec3c158269df31fa686fd6aea5a55f08839b1038.tar.xz
Merge branch 'master' of https://github.com/fosscord/fosscord-server
Diffstat (limited to 'api/src/routes/users')
-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