From cc9d2efef9501f1582fc80cd13ecdcecd218e4e7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 13 May 2024 18:50:20 -0500 Subject: [PATCH] Fix mentions --- src/views/mastodon/statuses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/mastodon/statuses.ts b/src/views/mastodon/statuses.ts index c743e8b..d00759d 100644 --- a/src/views/mastodon/statuses.ts +++ b/src/views/mastodon/statuses.ts @@ -41,7 +41,7 @@ async function renderStatus(event: DittoEvent, opts: RenderStatusOpts): Promise< ]; const mentionedProfiles = await Storages.optimizer.query( - [{ authors: mentionedPubkeys, limit: mentionedPubkeys.length }], + [{ kinds: [0], authors: mentionedPubkeys, limit: mentionedPubkeys.length }], ); const { html, links, firstUrl } = parseNoteContent(event.content);