Merge pull request #8456 from annando/fix-ap

Fix: Fetching content via the "objects" endpoint behaved wrong
This commit is contained in:
Hypolite Petovan
2020-03-26 08:45:10 -04:00
committed by GitHub
2 changed files with 6 additions and 2 deletions

View File

@@ -193,6 +193,8 @@ class Transmitter
$items = Item::select(['id'], $condition, ['limit' => [($page - 1) * 20, 20], 'order' => ['created' => true]]);
while ($item = Item::fetch($items)) {
$activity = self::createActivityFromItem($item['id'], true);
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
// Only list "Create" activity objects here, no reshares
if (is_array($activity['object']) && ($activity['type'] == 'Create')) {
$list[] = $activity['object'];