Merge pull request #8469 from MrPetovan/bug/notices
Add object key existence check in ActivityPub/Transmitter
This commit is contained in:
commit
5734fcbf21
1 changed files with 2 additions and 2 deletions
|
@ -196,7 +196,7 @@ class Transmitter
|
||||||
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
|
$activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
|
||||||
|
|
||||||
// Only list "Create" activity objects here, no reshares
|
// 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'];
|
$list[] = $activity['object'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue