mirror of
https://github.com/friendica/friendica
synced 2025-04-27 07:10:12 +00:00
Improve PR 5984: better check for remote users as well
This commit is contained in:
parent
1176a4240a
commit
8e11f055b1
2 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ class Post extends BaseObject
|
|||
$author = ['uid' => 0, 'id' => $item['author-id'],
|
||||
'network' => $item['author-network'], 'url' => $item['author-link']];
|
||||
|
||||
if (local_user()) {
|
||||
if (local_user() || remote_user()) {
|
||||
$profile_link = Contact::magicLinkbyContact($author);
|
||||
} else {
|
||||
$profile_link = $item['author-link'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue