From 02084331e3382cc127963e701d927b50ad5b994d Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 17 Sep 2023 05:43:36 +0000 Subject: [PATCH] Only change order for updates for new posts --- src/Module/Conversation/Network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Conversation/Network.php b/src/Module/Conversation/Network.php index 3850fccf8..63da5717a 100644 --- a/src/Module/Conversation/Network.php +++ b/src/Module/Conversation/Network.php @@ -350,7 +350,7 @@ class Network extends Timeline // Upon force (updates in the background) and order by last comment we order by receive date, // since otherwise the feed will optically jump, when some already visible thread has been updated. - if ($this->force && ($this->selectedTab == TimelineEntity::COMMENTED)) { + if ($this->force && ($this->selectedTab == TimelineEntity::COMMENTED) && !empty($request['first_commented'])) { $this->order = 'received'; }