From 17ae03f7663efe0c451c22226de8798a291c4c13 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 6 Apr 2023 10:24:52 +0800 Subject: [PATCH] since_id is not supported in trends/statuses And change update interval to 5 mins --- src/pages/trending.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/trending.jsx b/src/pages/trending.jsx index c92a7e11..dfed5ea7 100644 --- a/src/pages/trending.jsx +++ b/src/pages/trending.jsx @@ -51,12 +51,14 @@ function Trending(props) { const results = await masto.v1.trends .listStatuses({ limit: 1, - since_id: latestItem.current, + // NOT SUPPORTED + // since_id: latestItem.current, }) .next(); let { value } = results; value = filteredItems(value, 'public'); - if (value?.length) { + if (value?.length && value[0].id !== latestItem.current) { + latestItem.current = value[0].id; return true; } return false; @@ -81,6 +83,7 @@ function Trending(props) { errorText="Unable to load posts" fetchItems={fetchTrend} checkForUpdates={checkForUpdates} + checkForUpdatesInterval={5 * 60 * 1000} // 5 minutes useItemID headerStart={<>} boostsCarousel={snapStates.settings.boostsCarousel}