From 49e1cb9dd1b942c6a150d4fdb5742ac9c425b6c0 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 16 Sep 2021 18:19:36 +0000 Subject: [PATCH] Fix fatal error when following mail accounts --- mod/follow.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index 09201bed16..6227c0304c 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -156,8 +156,8 @@ function follow_content(App $a) DI::page()['aside'] = ''; - if ($protocol != Protocol::PHANTOM) { - DI::page()['aside'] = Widget\VCard::getHTML(Contact::getByURL($contact['url'], false)); + if (!in_array($protocol, [Protocol::PHANTOM, Protocol::MAIL])) { + DI::page()['aside'] = Widget\VCard::getHTML($contact); $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]