fix: find event and not pubkey in renderReblog

This commit is contained in:
P. Reis 2024-04-08 13:28:30 -03:00
parent 70a29a74fb
commit 0da9d2e3f4
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ 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 });
if (!event.repost) return;