From: Michael Date: Sun, 27 Oct 2024 19:14:51 +0000 (+0000) Subject: Issue 13270: Fix display of private comments on the profile page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=89bc4af2c62bdfcc93a8c90ca5633e7b1e033a0f;p=friendica.git Issue 13270: Fix display of private comments on the profile page --- diff --git a/src/Module/Profile/Conversations.php b/src/Module/Profile/Conversations.php index 20ff5040e5..d250b58765 100644 --- a/src/Module/Profile/Conversations.php +++ b/src/Module/Profile/Conversations.php @@ -225,7 +225,7 @@ class Conversations extends BaseProfile $items = array_merge($items, $pinned); } - $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $profile['uid']); + $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $this->session->getLocalUserId()); $o .= $pager->renderMinimal(count($items));