diff --git a/src/pipeline.ts b/src/pipeline.ts index 9c1ce129..0672c880 100644 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -192,7 +192,7 @@ async function fetchRelatedEvents(event: DittoEvent) { const signal = AbortSignal.timeout(3000); reqmeister.query([{ kinds: [0], authors: [event.pubkey] }], { signal }) .then((events) => Promise.allSettled(events.map((event) => handleEvent(event, signal)))) - .catch(() => { }); + .catch(() => {}); } for (const [name, id] of event.tags) { @@ -202,7 +202,7 @@ async function fetchRelatedEvents(event: DittoEvent) { const signal = AbortSignal.timeout(3000); reqmeister.query([{ ids: [id] }], { signal }) .then((events) => Promise.allSettled(events.map((event) => handleEvent(event, signal)))) - .catch(() => { }); + .catch(() => {}); } } }