Fix: Fetching content via the "objects" endpoint behaved wrong

This commit is contained in:
Michael Vogel 2020-03-26 07:52:48 +01:00
parent 3b3085369c
commit fcb0fa4cfa
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'];