Check array key existence in ActivityPub\Transmitter::createPermissionBlockForItem
- APContact::getByURL can return empty array - Address https://github.com/friendica/friendica/issues/11218#issuecomment-1066753232
This commit is contained in:
parent
61e023d448
commit
9eb6299f19
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ class Transmitter
|
||||||
$parent = Post::selectFirst(['causer-link', 'post-reason'], ['id' => $item['parent']]);
|
$parent = Post::selectFirst(['causer-link', 'post-reason'], ['id' => $item['parent']]);
|
||||||
if (($parent['post-reason'] == Item::PR_ANNOUNCEMENT) && !empty($parent['causer-link'])) {
|
if (($parent['post-reason'] == Item::PR_ANNOUNCEMENT) && !empty($parent['causer-link'])) {
|
||||||
$profile = APContact::getByURL($parent['causer-link'], false);
|
$profile = APContact::getByURL($parent['causer-link'], false);
|
||||||
$is_forum_thread = ($profile['type'] == 'Group');
|
$is_forum_thread = isset($profile['type']) && $profile['type'] == 'Group';
|
||||||
} else {
|
} else {
|
||||||
$is_forum_thread = false;
|
$is_forum_thread = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue