From 65d83403cd9a86049be99158e2243e12690451b5 Mon Sep 17 00:00:00 2001 From: Steve Korshakov Date: Tue, 26 Aug 2025 21:07:17 -0700 Subject: [PATCH] fix: github fix --- sources/app/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/app/api.ts b/sources/app/api.ts index 751b78c..1b965a1 100644 --- a/sources/app/api.ts +++ b/sources/app/api.ts @@ -978,7 +978,7 @@ export async function startApi(): Promise<{ app: FastifyInstance; io: Server }> return reply.send({ id: userId, timestamp: Date.now(), - github: user.githubUser ?? null, + github: user.githubUser ? user.githubUser.profile : null }); });