diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-28 19:23:02 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-28 19:23:02 +1100 |
commit | 00e3606f7c99eb3f9b4c6f9e0eb72234eb7d584a (patch) | |
tree | 05645586399601f7349cade5480897e08b78c2f7 /src/api/routes/users | |
parent | lol (diff) | |
download | server-00e3606f7c99eb3f9b4c6f9e0eb72234eb7d584a.tar.xz |
Fix user settings not saving properly and guild folders
Diffstat (limited to 'src/api/routes/users')
-rw-r--r-- | src/api/routes/users/@me/settings.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/api/routes/users/@me/settings.ts b/src/api/routes/users/@me/settings.ts index 4493fcc7..8fb86012 100644 --- a/src/api/routes/users/@me/settings.ts +++ b/src/api/routes/users/@me/settings.ts @@ -1,5 +1,5 @@ import { Router, Response, Request } from "express"; -import { User, UserSettings } from "@fosscord/util"; +import { OrmUtils, User, UserSettingsSchema } from "@fosscord/util"; import { route } from "@fosscord/api"; const router = Router(); @@ -16,14 +16,15 @@ router.patch( "/", route({ body: "UserSettingsSchema" }), async (req: Request, res: Response) => { - const body = req.body as UserSettings; + const body = req.body as UserSettingsSchema; if (body.locale === "en") body.locale = "en-US"; // fix discord client crash on unkown locale const user = await User.findOneOrFail({ where: { id: req.user_id, bot: false }, + select: ["settings"] }); - user.settings = { ...user.settings, ...body }; - await user.save(); + user.settings = OrmUtils.mergeDeep(user.settings, body); + User.update({ id: user.id }, { settings: user.settings }); res.json(user.settings); }, |