this repo has no description

fix: route getRecord via ?repo= param

🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

Changed files
+2 -1
src
+2 -1
src/pds.js
··· 1497 1497 1498 1498 // Repo endpoints use ?repo= param instead of ?did= 1499 1499 if (url.pathname === '/xrpc/com.atproto.repo.describeRepo' || 1500 - url.pathname === '/xrpc/com.atproto.repo.listRecords') { 1500 + url.pathname === '/xrpc/com.atproto.repo.listRecords' || 1501 + url.pathname === '/xrpc/com.atproto.repo.getRecord') { 1501 1502 const repo = url.searchParams.get('repo') 1502 1503 if (!repo) { 1503 1504 return Response.json({ error: 'InvalidRequest', message: 'missing repo param' }, { status: 400 })