From f94c2b7d854a15f0a220eaa4a56191f73d99a3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Sat, 7 Mar 2026 17:48:04 +0100 Subject: [PATCH] nicolium: timeline grouping fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/nicolium/src/stores/timelines.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/nicolium/src/stores/timelines.ts b/packages/nicolium/src/stores/timelines.ts index f2e46cf3f..a306638ad 100644 --- a/packages/nicolium/src/stores/timelines.ts +++ b/packages/nicolium/src/stores/timelines.ts @@ -73,7 +73,11 @@ const processPage = (statuses: Array): Array => { const timelinePage: Array = []; const processStatus = (status: Status): boolean => { - if (timelinePage.some((entry) => entry.type === 'status' && entry.id === status.id)) + if ( + timelinePage.some( + (entry) => entry.type === 'status' && entry.id === (status.reblog || status).id, + ) + ) return false; let isConnectedTop = false;