stats: handle follow/following counts

This commit is contained in:
Alex Gleason
2023-12-10 17:42:44 -06:00
parent 2d3f12dc72
commit 4f79b7ec29
3 changed files with 86 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ async function storeEvent(event: Event, data: EventData): Promise<void> {
} else {
await Promise.all([
eventsDB.insertEvent(event, data).catch(console.warn),
updateStats(event),
updateStats(event).catch(console.warn),
]);
}
} else {