Merge pull request #10377 from annando/warning

Avoid PHP Warning:  Illegal string offset 'type' in /src/Protocol/ActivityPub/Receiver.php on line 668
This commit is contained in:
Hypolite Petovan 2021-06-07 06:51:28 -04:00 committed by GitHub
commit 246aa293d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -665,7 +665,7 @@ class Receiver
if (!empty($actor)) {
$profile = APContact::getByURL($actor);
$followers = $profile['followers'] ?? '';
$is_forum = $actor['type'] == 'Group';
$is_forum = ($actor['type'] ?? '') == 'Group';
Logger::info('Got actor and followers', ['actor' => $actor, 'followers' => $followers]);
} else {
Logger::info('Empty actor', ['activity' => $activity]);