From 9ea941368dbd4dedad5563d6d66465d66a87762a Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 3 Jan 2023 00:27:47 +0800 Subject: [PATCH] More fixes --- src/pages/home.jsx | 3 ++- src/pages/notifications.jsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/home.jsx b/src/pages/home.jsx index 105cd107..79a55854 100644 --- a/src/pages/home.jsx +++ b/src/pages/home.jsx @@ -29,6 +29,7 @@ function Home({ hidden }) { homeIterator.current = masto.v1.timelines.listHome({ limit: LIMIT, }); + states.homeNew = []; } const allStatuses = await homeIterator.current.next(); if (allStatuses.value <= 0) { @@ -47,7 +48,6 @@ function Home({ hidden }) { }); if (firstLoad) { states.home = homeValues; - states.homeNew = []; } else { states.home.push(...homeValues); } @@ -256,6 +256,7 @@ function Home({ hidden }) { ); states.home.unshift(...uniqueHomeNew); loadStatuses(true); + states.homeNew = []; scrollableRef.current?.scrollTo({ top: 0, diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index e702c0b6..8ea2acdf 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -222,6 +222,7 @@ function Notifications() { notificationsIterator.current = masto.v1.notifications.list({ limit: LIMIT, }); + states.notificationsNew = []; } const allNotifications = await notificationsIterator.current.next(); if (allNotifications.value <= 0) { @@ -235,7 +236,6 @@ function Notifications() { }); if (firstLoad) { states.notifications = notificationsValues; - states.notificationsNew = []; } else { states.notifications.push(...notificationsValues); }