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.

fix(lexicon-resolver): stale FailedResponseError construct

Mary 11e4e0b3 56f312e9

+6 -1
+5
.changeset/modern-ads-learn.md
··· 1 + --- 2 + '@atcute/lexicon-resolver': patch 3 + --- 4 + 5 + fix stale FailedResponseError construct
+1 -1
packages/lexicons/lexicon-resolver/lib/schemas/xrpc.ts
··· 64 64 }); 65 65 66 66 if (!response.ok) { 67 - throw new FailedResponseError(response.status, `got http ${response.status}`); 67 + throw new FailedResponseError(response); 68 68 } 69 69 70 70 carBytes = await response.bytes();