mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Issue 6212: No need of a redirect for fetching content
This commit is contained in:
parent
e64a14b84b
commit
39ce33f7ed
1 changed files with 10 additions and 1 deletions
|
@ -82,7 +82,16 @@ function display_init(App $a)
|
|||
}
|
||||
|
||||
if (ActivityPub::isRequest()) {
|
||||
$a->internalRedirect(str_replace('display/', 'objects/', $a->query_string));
|
||||
$item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'origin' => true, 'private' => false]);
|
||||
if (!DBA::isResult($item)) {
|
||||
System::httpExit(404);
|
||||
}
|
||||
|
||||
$data = ActivityPub\Transmitter::createObjectFromItemID($item['id']);
|
||||
|
||||
header('Content-Type: application/activity+json');
|
||||
echo json_encode($data);
|
||||
exit();
|
||||
}
|
||||
|
||||
if ($item["id"] != $item["parent"]) {
|
||||
|
|
Loading…
Reference in a new issue