mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
Fix in_reply_to for legacy clients
This commit is contained in:
parent
acabc7c4ad
commit
4962f31296
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue