···197197// ── social graph ────────────────────────────────────────────────────
198198async function resolvePds(did) {
199199 const doc = await resolveMiniDoc(did);
200200- if (typeof doc.pds !== "string") throw new Error(`no pds in slingshot response for ${did}`);
200200+ if (typeof doc?.pds !== "string") throw new Error(`no pds in slingshot response for ${did}`);
201201 return doc.pds;
202202}
203203