Check $item_profile is populated in ActivityPub\Transmitter
- Address https://github.com/friendica/friendica/issues/8475#issuecomment-625716446
This commit is contained in:
parent
8a4b830552
commit
55acb51148
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ class Transmitter
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($receiver == $item_profile['followers']) {
|
if ($item_profile && $receiver == $item_profile['followers']) {
|
||||||
$inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal));
|
$inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal));
|
||||||
} else {
|
} else {
|
||||||
if (Contact::isLocal($receiver)) {
|
if (Contact::isLocal($receiver)) {
|
||||||
|
|
Loading…
Reference in a new issue