Fix in_reply_to for legacy clients

This commit is contained in:
Alex Gleason 2023-04-29 18:02:24 -05:00
parent acabc7c4ad
commit 4962f31296
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -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,