mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
fix type error caused by trends refactor
This commit is contained in:
parent
f19629600d
commit
949697d80a
1 changed files with 3 additions and 3 deletions
|
|
@ -177,7 +177,7 @@ async function trackHashtags(event: NostrEvent): Promise<void> {
|
|||
|
||||
try {
|
||||
debug('tracking tags:', JSON.stringify(tags));
|
||||
await TrendsWorker.addTagUsages(event.pubkey, tags, date);
|
||||
await TrendsWorker.addTagUsages(event.pubkey, tags, date.valueOf());
|
||||
} catch (_e) {
|
||||
// do nothing
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue