mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-25 01:04:25 +01:00
Merge branch 'fix-find-event' into 'main'
fix: find event and not pubkey in renderReblog See merge request soapbox-pub/ditto!146
This commit is contained in:
@@ -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 });
|
||||
|
||||
Reference in New Issue
Block a user