Update AP inbox

This commit is contained in:
Daniel Supernault 2019-03-09 02:15:16 -07:00
parent c955689818
commit f680cb1fad
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 7 deletions

View File

@ -197,19 +197,15 @@ class Inbox
'item_type' => 'App\Profile'
]);
}
$payload = $this->payload;
$payload = unset($payload['@context']);
// send Accept to remote profile
$accept = [
'@context' => 'https://www.w3.org/ns/activitystreams',
'id' => $target->permalink().'#accepts/follows/' . $follower->id,
'type' => 'Accept',
'actor' => $target->permalink(),
'object' => [
'id' => $this->payload['id'],
'type' => 'Follow',
'actor' => $actor->permalink(),
'object' => $target->permalink()
]
'object' => $payload
];
Helpers::sendSignedObject($target, $actor->inbox_url, $accept);
}