mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00: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:
commit
2169f8f26a
1 changed files with 1 additions and 1 deletions
|
|
@ -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 });
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue