Add object key existence check in ActivityPub/Transmitter
- Addresses https://github.com/friendica/friendica/issues/8000#issuecomment-605614192
This commit is contained in:
parent
8eaab2cecb
commit
f69c591166
|
@ -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'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue