Mass Block [bsky] Reposts [and more]
0
fork

Configure Feed

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

fix: consistent optional chaining in resolvePds shape guard

Winter c94c5878 b297fb0e

+1 -1
+1 -1
index.js
··· 197 197 // ── social graph ──────────────────────────────────────────────────── 198 198 async function resolvePds(did) { 199 199 const doc = await resolveMiniDoc(did); 200 - if (typeof doc.pds !== "string") throw new Error(`no pds in slingshot response for ${did}`); 200 + if (typeof doc?.pds !== "string") throw new Error(`no pds in slingshot response for ${did}`); 201 201 return doc.pds; 202 202 } 203 203