Merge pull request #9563 from annando/annando/issue9407

iIssue 9407: Fix comments to Peertube
This commit is contained in:
Hypolite Petovan 2020-11-21 08:09:53 -05:00 committed by GitHub
commit 039bff38db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -432,7 +432,12 @@ class Transmitter
$activity = json_decode($conversation['source'], true);
$actor = JsonLD::fetchElement($activity, 'actor', 'id');
$profile = APContact::getByURL($actor);
if (!empty($actor)) {
$permissions['to'][] = $actor;
$profile = APContact::getByURL($actor);
} else {
$profile = [];
}
$item_profile = APContact::getByURL($item['author-link']);
$exclude[] = $item['author-link'];
@ -441,8 +446,6 @@ class Transmitter
$exclude[] = $item['owner-link'];
}
$permissions['to'][] = $actor;
foreach (['to', 'cc', 'bto', 'bcc'] as $element) {
if (empty($activity[$element])) {
continue;