From 22ddc7b1a89c1daa8513905944f4c4cc15428187 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 5 Sep 2023 20:35:58 -0500 Subject: [PATCH] pipeline: remove unnecessary async keyword from trackHashtags --- src/pipeline.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pipeline.ts b/src/pipeline.ts index 1bbed40..4bdec81 100644 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -68,8 +68,7 @@ async function storeEvent(event: Event, data: EventData): Promise { } /** Track whenever a hashtag is used, for processing trending tags. */ -// deno-lint-ignore require-await -async function trackHashtags(event: Event): Promise { +function trackHashtags(event: Event): void { const date = nostrDate(event.created_at); const tags = event.tags