mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:50:11 +00:00
Merge pull request #8456 from annando/fix-ap
Fix: Fetching content via the "objects" endpoint behaved wrong
This commit is contained in:
commit
8a4a65f418
2 changed files with 6 additions and 2 deletions
|
@ -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'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue