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(lex-cli): fmt

Mary feac8d98 202d384d

+5 -1
+5 -1
packages/lexicons/lex-cli/src/lsp-client.ts
··· 203 203 } 204 204 } else if (message.method != null) { 205 205 // server-initiated request — reply with MethodNotFound so it doesn't hang 206 - sendMessage({ jsonrpc: '2.0', id: message.id, error: { code: -32601, message: `method not found` } }); 206 + sendMessage({ 207 + jsonrpc: '2.0', 208 + id: message.id, 209 + error: { code: -32601, message: `method not found` }, 210 + }); 207 211 } 208 212 } 209 213 }