From 82c2a30c5947ce5661bfa5ba40e1fcc23ec8ab39 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 21 Oct 2021 18:58:18 -0400 Subject: [PATCH] Fix wrong array access to Entity object - Address https://github.com/friendica/friendica/issues/10756#issuecomment-949051839 --- src/Model/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 0acb6d4d72..c6a91edc8b 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1088,7 +1088,7 @@ class Contact if (!empty($contact['pending'])) { try { $intro = DI::intro()->selectForContact($contact['id']); - $menu['follow'] = [DI::l10n()->t('Approve'), 'notifications/intros/' . $intro['id'], true]; + $menu['follow'] = [DI::l10n()->t('Approve'), 'notifications/intros/' . $intro->id, true]; } catch (IntroductionNotFoundException $exception) { DI::logger()->error('Pending contact doesn\'t have an introduction.', ['exception' => $exception]); }