since_id is not supported in trends/statuses
And change update interval to 5 mins
This commit is contained in:
parent
e6ad1f78ad
commit
17ae03f766
1 changed files with 5 additions and 2 deletions
|
@ -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}
|
||||||
|
|
Loading…
Add table
Reference in a new issue