extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix OG image endpoint: await database query

The Kysely executeTakeFirst() returns a Promise that wasn't being
awaited, causing game to be undefined when accessing properties.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+1 -1
+1 -1
src/routes/og-image/[id]/+server.ts
··· 8 8 const gameRkey = params.id; 9 9 10 10 const db = getDb(); 11 - const game = db 11 + const game = await db 12 12 .selectFrom('games') 13 13 .selectAll() 14 14 .where('rkey', '=', gameRkey)