Merge pull request #5986 from annando/improve-5984

Improve PR 5984: better check for remote users as well
This commit is contained in:
rabuzarus
2018-10-22 00:03:19 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

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