summary refs log tree commit diff
path: root/api
diff options
context:
space:
mode:
authorRealMANI <96433859+ImAaronFR@users.noreply.github.com>2022-03-06 12:37:16 +0330
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-03-06 12:18:58 +0300
commite25db746c1c952a98e354eefb51b157fed1868de (patch)
treec0b1ef36658cdd89567f92d775011899de4f1bcd /api
parent[Fix] Changing bio and accent color (diff)
downloadserver-e25db746c1c952a98e354eefb51b157fed1868de.tar.xz
Check username
Diffstat (limited to 'api')
-rw-r--r--api/src/routes/users/@me/index.ts14
1 files changed, 8 insertions, 6 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts
index 78e203a2..d32b44f9 100644
--- a/api/src/routes/users/@me/index.ts
+++ b/api/src/routes/users/@me/index.ts
@@ -57,12 +57,14 @@ router.patch("/", route({ body: "UserModifySchema" }), async (req: Request, res:
 		user.data.hash = await bcrypt.hash(body.new_password, 12);
 	}
 
-	var check_username = body?.username?.replace(/\s/g, '');
-	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") }
-		});
-	}
+    if(body.username){
+        var check_username = body?.username?.replace(/\s/g, '');
+        if(!check_username) {
+            throw FieldErrors({
+                username: { code: "BASE_TYPE_REQUIRED", message: req.t("common:field.BASE_TYPE_REQUIRED") }
+            });
+        }
+    }
 
 	await user.save();