since_id is not supported in trends/statuses

And change update interval to 5 mins
This commit is contained in:
Lim Chee Aun 2023-04-06 10:24:52 +08:00
parent e6ad1f78ad
commit 17ae03f766

View file

@ -51,12 +51,14 @@ function Trending(props) {
const results = await masto.v1.trends const results = await masto.v1.trends
.listStatuses({ .listStatuses({
limit: 1, limit: 1,
since_id: latestItem.current, // NOT SUPPORTED
// since_id: latestItem.current,
}) })
.next(); .next();
let { value } = results; let { value } = results;
value = filteredItems(value, 'public'); value = filteredItems(value, 'public');
if (value?.length) { if (value?.length && value[0].id !== latestItem.current) {
latestItem.current = value[0].id;
return true; return true;
} }
return false; return false;
@ -81,6 +83,7 @@ function Trending(props) {
errorText="Unable to load posts" errorText="Unable to load posts"
fetchItems={fetchTrend} fetchItems={fetchTrend}
checkForUpdates={checkForUpdates} checkForUpdates={checkForUpdates}
checkForUpdatesInterval={5 * 60 * 1000} // 5 minutes
useItemID useItemID
headerStart={<></>} headerStart={<></>}
boostsCarousel={snapStates.settings.boostsCarousel} boostsCarousel={snapStates.settings.boostsCarousel}