diff options
author | RealMANI <96433859+ImAaronFR@users.noreply.github.com> | 2022-03-06 12:20:47 +0330 |
---|---|---|
committer | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-03-06 12:18:58 +0300 |
commit | ec52a370da2e8c06c202783bdfc06586a26d2f47 (patch) | |
tree | 55862c447c3d9c64888cea2d061d9b34c47f838e /api/src | |
parent | Fixed npm run tsnode throwing error about ES modules for node-fetch. Probably... (diff) | |
download | server-ec52a370da2e8c06c202783bdfc06586a26d2f47.tar.xz |
[Fix] Changing bio and accent color
Diffstat (limited to 'api/src')
-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 5834921c..78e203a2 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts @@ -58,7 +58,7 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res: } var check_username = body?.username?.replace(/\s/g, ''); - if(!check_username && !body?.avatar && !body?.banner) { + if(!check_username && !body?.avatar && !body?.banner && !body?.bio && !body?.accent_color) { throw FieldErrors({ username: { code: "BASE_TYPE_REQUIRED", message: req.t("common:field.BASE_TYPE_REQUIRED") } }); |