a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

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

chore(xrpc-server): add comment on swallowing ws.send() call

Mary 07ade93c 6aa8638e

+3 -1
+3 -1
packages/servers/xrpc-server/lib/main/router.ts
··· 359 359 360 360 try { 361 361 await ws.send(frame); 362 - } catch {} 362 + } catch { 363 + // best-effort, socket may already be closed 364 + } 363 365 364 366 ws.close(err.closeCode, err.error); 365 367 return;