Merge pull request #10719 from annando/fatal-mail

Fix fatal error when following mail accounts
This commit is contained in:
Hypolite Petovan 2021-09-16 18:34:17 -04:00 committed by GitHub
commit 9b19fb9b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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')]