fix(activitypub): add target_actor_id for create activity to broadcast post reply

This commit is contained in:
Yassine Doghri 2022-02-03 12:11:01 +00:00
commit 0128a21ec5
3 changed files with 11 additions and 7 deletions

View file

@ -39,6 +39,8 @@ class NoteObject extends ObjectType
$this->attributedTo = $post->actor->uri;
if ($post->in_reply_to_id !== null) {
$this->to[] = $post->reply_to_post->actor->uri;
$this->inReplyTo = $post->reply_to_post->uri;
}