From 89bc4af2c62bdfcc93a8c90ca5633e7b1e033a0f Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 27 Oct 2024 19:14:51 +0000 Subject: [PATCH] Issue 13270: Fix display of private comments on the profile page --- src/Module/Profile/Conversations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));