From ed664b10917bf16f6f916fc2b70c9a3457ea4395 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 9 May 2018 21:09:16 +0000 Subject: [PATCH] For feed items show the avatar of the local user --- src/Object/Post.php | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/src/Object/Post.php b/src/Object/Post.php index 820730a32b..54cea63e9b 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -199,22 +199,12 @@ class Post extends BaseObject $profile_link = Profile::zrl($profile_link); } - if (!isset($item['author-thumb']) || ($item['author-thumb'] == "")) { - $author_contact = Contact::getDetailsByURL($item['author-link'], $conv->getProfileOwner()); - if ($author_contact["thumb"]) { - $item['author-thumb'] = $author_contact["thumb"]; - } else { - $item['author-thumb'] = $item['author-avatar']; - } + if (($item['network'] == NETWORK_FEED) || empty($item['author-thumb'])) { + $item['author-thumb'] = $item['author-avatar']; } - if (!isset($item['owner-thumb']) || ($item['owner-thumb'] == "")) { - $owner_contact = Contact::getDetailsByURL($item['owner-link'], $conv->getProfileOwner()); - if ($owner_contact["thumb"]) { - $item['owner-thumb'] = $owner_contact["thumb"]; - } else { - $item['owner-thumb'] = $item['owner-avatar']; - } + if (($item['network'] == NETWORK_FEED) || empty($item['owner-thumb'])) { + $item['owner-thumb'] = $item['owner-avatar']; } $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];