diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-23 01:48:41 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-23 01:48:41 +1000 |
commit | 6e0040a8ca95815582b72102d7a9d214800ff7fc (patch) | |
tree | 8e8248d34868137b01853bf824892915c55372a7 /api | |
parent | Can no longer send messages to channel types that do not support it ( categor... (diff) | |
download | server-6e0040a8ca95815582b72102d7a9d214800ff7fc.tar.xz |
Fix not assigning new changes to input fields in users/@me
Diffstat (limited to 'api')
-rw-r--r-- | api/src/routes/users/@me/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts index c86189a0..1af413c4 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts @@ -34,7 +34,6 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: if (body.banner) body.banner = await handleFile(`/banners/${req.user_id}`, body.banner as string); const user = await User.findOneOrFail({ where: { id: req.user_id }, select: [...PrivateUserProjection, "data"] }); - user.assign(body); if (body.password) { if (user.data?.hash) { @@ -65,6 +64,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } } + user.assign(body); await user.save(); // @ts-ignore |