diff --git a/functions/api/v1/statuses.ts b/functions/api/v1/statuses.ts index 447b450..52764ea 100644 --- a/functions/api/v1/statuses.ts +++ b/functions/api/v1/statuses.ts @@ -84,7 +84,7 @@ export async function handleRequest( const extraProperties: any = {} if (inReplyToObject !== null) { - extraProperties.inReplyTo = inReplyToObject.id.toString() + extraProperties.inReplyTo = inReplyToObject.originalObjectId || inReplyToObject.id.toString() } const domain = new URL(request.url).hostname