Add object key existence check in ActivityPub/Transmitter

- Addresses https://github.com/friendica/friendica/issues/8000#issuecomment-605614192
This commit is contained in:
Hypolite Petovan 2020-03-29 12:52:05 -04:00
parent 8eaab2cecb
commit f69c591166
1 changed files with 2 additions and 2 deletions

View File

@ -193,10 +193,10 @@ 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'];
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
// Only list "Create" activity objects here, no reshares
if (is_array($activity['object']) && ($activity['type'] == 'Create')) {
if (!empty($activity['object']) && ($activity['type'] == 'Create')) {
$list[] = $activity['object'];
}
}