diff --git a/src/views/mastodon/statuses.ts b/src/views/mastodon/statuses.ts index 791263c..6762e82 100644 --- a/src/views/mastodon/statuses.ts +++ b/src/views/mastodon/statuses.ts @@ -103,7 +103,7 @@ async function renderStatus(event: DittoEvent, viewerPubkey?: string) { async function renderReblog(event: DittoEvent) { if (!event.author) return; - const repostId = event.tags.find(([name]) => name === 'p')?.[1]; + const repostId = event.tags.find(([name]) => name === 'e')?.[1]; if (!repostId) return; event.repost = await getEvent(repostId, { kind: 1 });