diff --git a/src/views/mastodon/statuses.ts b/src/views/mastodon/statuses.ts index 35f89c5..791263c 100644 --- a/src/views/mastodon/statuses.ts +++ b/src/views/mastodon/statuses.ts @@ -104,12 +104,14 @@ async function renderReblog(event: DittoEvent) { if (!event.author) return; const repostId = event.tags.find(([name]) => name === 'p')?.[1]; - event.repost = await getEvent(repostId, { kind: 1 }); + if (!repostId) return; + event.repost = await getEvent(repostId, { kind: 1 }); if (!event.repost) return; const reblog = await renderStatus(event.repost); reblog.reblogged = true; + return { id: event.id, account: await renderAccount(event.author),