renderReblog: fix types

This commit is contained in:
Alex Gleason 2024-04-08 11:34:21 -05:00
parent bc33f270d0
commit 57b0224517
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 3 additions and 1 deletions

View File

@ -104,12 +104,14 @@ async function renderReblog(event: DittoEvent) {
if (!event.author) return; if (!event.author) return;
const repostId = event.tags.find(([name]) => name === 'p')?.[1]; 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; if (!event.repost) return;
const reblog = await renderStatus(event.repost); const reblog = await renderStatus(event.repost);
reblog.reblogged = true; reblog.reblogged = true;
return { return {
id: event.id, id: event.id,
account: await renderAccount(event.author), account: await renderAccount(event.author),