Merge pull request #8469 from MrPetovan/bug/notices
authorMichael Vogel <icarus@dabo.de>
Sun, 29 Mar 2020 21:29:34 +0000 (23:29 +0200)
committerGitHub <noreply@github.com>
Sun, 29 Mar 2020 21:29:34 +0000 (23:29 +0200)
Add object key existence check in ActivityPub/Transmitter

src/Protocol/ActivityPub/Transmitter.php

index e39a4f9..837e81c 100644 (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'];
                                }
                        }