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(xrpc-server): incorrect null check on serviceDid

Mary 6aa8638e b909be54

+6 -1
+5
.changeset/all-planes-type.md
··· 1 + --- 2 + '@atcute/xrpc-server': patch 3 + --- 4 + 5 + incorrect null check on serviceDid
+1 -1
packages/servers/xrpc-server/lib/auth/jwt-verifier.ts
··· 124 124 }; 125 125 } 126 126 127 - if (this.serviceDid !== undefined && this.serviceDid !== payload.aud) { 127 + if (this.serviceDid !== null && this.serviceDid !== payload.aud) { 128 128 return { 129 129 ok: false, 130 130 error: {