summary refs log tree commit diff
diff options
context:
space:
mode:
authorRealMANI <96433859+ImAaronFR@users.noreply.github.com>2022-02-20 07:55:44 +0330
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-02-20 08:10:50 +0300
commitd2b6107e00ff2ed38215b406e658b5a0da7d341c (patch)
tree9e03e9ca1c3de14aac0ae25cb328202199620b1d
parentBump url-parse from 1.5.3 to 1.5.7 in /bundle (diff)
downloadserver-d2b6107e00ff2ed38215b406e658b5a0da7d341c.tar.xz
[Fix] Profile & banner uploading
Related to this issue https://github.com/fosscord/fosscord-server/pull/639#issuecomment-1046140968
-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 acca8910..5834921c 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) {
+	if(!check_username && !body?.avatar && !body?.banner) {
 		throw FieldErrors({
 			username: { code: "BASE_TYPE_REQUIRED", message: req.t("common:field.BASE_TYPE_REQUIRED") }
 		});