Minor refactoring

This commit is contained in:
Alex Gleason
2023-08-08 19:31:14 -05:00
parent 295b16e943
commit cd68da5b93
3 changed files with 4 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ relay.subscribe(
/** Handle events through the loopback pipeline. */
function handleEvent(event: SignedEvent): void {
console.info('loopback event:', event.id);
insertEvent(event);
insertEvent(event).catch(console.warn);
trackHashtags(event);
}