mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-24 00:34:25 +01:00
pipeline: remove unnecessary async keyword from trackHashtags
This commit is contained in:
@@ -68,8 +68,7 @@ async function storeEvent(event: Event, data: EventData): Promise<void> {
|
||||
}
|
||||
|
||||
/** Track whenever a hashtag is used, for processing trending tags. */
|
||||
// deno-lint-ignore require-await
|
||||
async function trackHashtags(event: Event): Promise<void> {
|
||||
function trackHashtags(event: Event): void {
|
||||
const date = nostrDate(event.created_at);
|
||||
|
||||
const tags = event.tags
|
||||
|
||||
Reference in New Issue
Block a user