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

@ -196,7 +196,7 @@ class Transmitter
$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'];
}
}