diff --git a/src/routes/users/#id/profile.ts b/src/routes/users/#id/profile.ts index 516606f3..b86b0b90 100644 --- a/src/routes/users/#id/profile.ts +++ b/src/routes/users/#id/profile.ts @@ -16,6 +16,7 @@ router.get("/", async (req: Request, res: Response) => { id: user.id, public_flags: user.public_flags, avatar: user.avatar, + accent_color: user.accent_color, bio: req.user_bot ? null : user.bio, bot: user.bot, } diff --git a/src/routes/users/@me/profile.ts b/src/routes/users/@me/profile.ts index 366eb535..0d295d05 100644 --- a/src/routes/users/@me/profile.ts +++ b/src/routes/users/@me/profile.ts @@ -16,6 +16,7 @@ router.get("/", async (req: Request, res: Response) => { id: user.id, public_flags: user.public_flags, avatar: user.avatar, + accent_color: user.accent_color, bio: user.bio, bot: user.bot, }