diff --git a/src/transmute.ts b/src/transmute.ts index 0199d74..15b5897 100644 --- a/src/transmute.ts +++ b/src/transmute.ts @@ -54,7 +54,7 @@ async function toStatus(event: Event<1>) { const account = profile ? toAccount(profile) : undefined; if (!account) return; - const inReplyTo = event.tags.find((tag) => tag[0] === 'e' && tag[3] === 'reply'); + const inReplyTo = event.tags.find((tag) => tag[0] === 'e' && (!tag[3] || tag[3] === 'reply')); return { id: event.id,