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