summary refs log tree commit diff
diff options
context:
space:
mode:
authorRealMANI <96433859+ImAaronFR@users.noreply.github.com>2022-03-06 12:20:47 +0330
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-03-06 12:18:58 +0300
commitec52a370da2e8c06c202783bdfc06586a26d2f47 (patch)
tree55862c447c3d9c64888cea2d061d9b34c47f838e
parentFixed npm run tsnode throwing error about ES modules for node-fetch. Probably... (diff)
downloadserver-ec52a370da2e8c06c202783bdfc06586a26d2f47.tar.xz
[Fix] Changing bio and accent color
-rw-r--r--api/src/routes/users/@me/index.ts2
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") }
 		});