mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Issue 8967: Fix avatar in top bar
This commit is contained in:
parent
73c112066d
commit
f1380e6af4
1 changed files with 1 additions and 2 deletions
|
@ -195,8 +195,7 @@ function frio_remote_nav($a, &$nav)
|
|||
// this isn't optimal because the contact query will be done now twice
|
||||
$fields = ['id', 'url', 'avatar', 'micro', 'name', 'nick', 'baseurl'];
|
||||
if (local_user() && !empty($a->user['uid'])) {
|
||||
$remoteUser = Contact::getById($a->user['uid'], $fields);
|
||||
$remoteUser['name'] = $a->user['username'];
|
||||
$remoteUser = DBA::selectFirst('contact', $fields, ['uid' => $a->user['uid'], 'self' => true]);
|
||||
} elseif (!local_user() && remote_user()) {
|
||||
$remoteUser = Contact::getById(remote_user(), $fields);
|
||||
$nav['remote'] = DI::l10n()->t('Guest');
|
||||
|
|
Loading…
Reference in a new issue