1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 10:52:31 +01:00

[Fix] Changing bio and accent color

This commit is contained in:
RealMANI 2022-03-06 12:20:47 +03:30 committed by Erkin Alp Güney
parent 4b1f30ba43
commit ec52a370da

View File

@ -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") }
});