Merge pull request #8469 from MrPetovan/bug/notices

Add object key existence check in ActivityPub/Transmitter
This commit is contained in:
Michael Vogel 2020-03-29 23:29:34 +02:00 committed by GitHub
commit 5734fcbf21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'];
}
}