Issue 6212: No need of a redirect for fetching content

This commit is contained in:
Michael 2018-11-29 15:06:00 +00:00
parent e64a14b84b
commit 39ce33f7ed
1 changed files with 10 additions and 1 deletions

View File

@ -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"]) {