mirror of
https://github.com/friendica/friendica
synced 2024-11-18 21:43:40 +00:00
Merge pull request #10719 from annando/fatal-mail
Fix fatal error when following mail accounts
This commit is contained in:
commit
9b19fb9b4d
1 changed files with 2 additions and 2 deletions
|
@ -156,8 +156,8 @@ function follow_content(App $a)
|
||||||
|
|
||||||
DI::page()['aside'] = '';
|
DI::page()['aside'] = '';
|
||||||
|
|
||||||
if ($protocol != Protocol::PHANTOM) {
|
if (!in_array($protocol, [Protocol::PHANTOM, Protocol::MAIL])) {
|
||||||
DI::page()['aside'] = Widget\VCard::getHTML(Contact::getByURL($contact['url'], false));
|
DI::page()['aside'] = Widget\VCard::getHTML($contact);
|
||||||
|
|
||||||
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'),
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'),
|
||||||
['$title' => DI::l10n()->t('Status Messages and Posts')]
|
['$title' => DI::l10n()->t('Status Messages and Posts')]
|
||||||
|
|
Loading…
Reference in a new issue