diff options
author | Mario <mario@mariovavti.com> | 2023-09-17 13:35:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-09-17 13:35:55 +0000 |
commit | bb38a90ddaa6f57397d62fd0414b4b9d6968f719 (patch) | |
tree | 9ee5c14342e28219e7ee7d2e7ac43ebfee9f181a /Zotlabs | |
parent | c36743f7eec7bc0196346aada79e9a2a74e76adf (diff) | |
download | volse-hubzilla-bb38a90ddaa6f57397d62fd0414b4b9d6968f719.tar.gz volse-hubzilla-bb38a90ddaa6f57397d62fd0414b4b9d6968f719.tar.bz2 volse-hubzilla-bb38a90ddaa6f57397d62fd0414b4b9d6968f719.zip |
use small profile images instead of medium
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 7d2bcde56..037ddb19e 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -185,7 +185,7 @@ class ThreadItem { $filer = ((($conv->get_profile_owner() == local_channel()) && (! array_key_exists('real_uid',$item))) ? t("Save to Folder") : false); - $profile_avatar = $item['author']['xchan_photo_m']; + $profile_avatar = $item['author']['xchan_photo_s']; $profile_link = chanlink_hash($item['author_xchan']); $profile_name = $item['author']['xchan_name']; @@ -874,7 +874,7 @@ class ThreadItem { if($this->is_toplevel() && ($this->get_data_value('author_xchan') != $this->get_data_value('owner_xchan'))) { $this->owner_url = chanlink_hash($this->data['owner']['xchan_hash']); - $this->owner_photo = $this->data['owner']['xchan_photo_m']; + $this->owner_photo = $this->data['owner']['xchan_photo_s']; $this->owner_name = $this->data['owner']['xchan_name']; $this->wall_to_wall = true; } |