+1
-1
common/db.ts
+1
-1
common/db.ts
+7
-1
ingest.ts
+7
-1
ingest.ts
···
117
117
}
118
118
119
119
const atUri: ResourceUri = `at://${e.did}/app.bsky.feed.post/${e.commit.rkey}`;
120
-
const pds = await getPDS(e.did as DID);
120
+
let pds;
121
+
try {
122
+
pds = await getPDS(e.did as DID);
123
+
} catch (e) {
124
+
console.error(e);
125
+
return;
126
+
}
121
127
122
128
if (!pds) {
123
129
console.error(`PDS not found for ${e.did}`);