This commit is contained in:
Siddharth Singh 2024-05-20 00:14:29 +05:30
parent 949697d80a
commit 29eb87dab3
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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(() => {});
}
}
}