renderReblog: fix types
This commit is contained in:
parent
bc33f270d0
commit
57b0224517
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue