Consider shown and pending status in explore prompt calculation (#27466)

Co-authored-by: Brian Campbell <[email protected]>
This commit is contained in:
Brian Campbell
2023-10-19 14:25:57 +02:00
committed by GitHub
co-authored by Brian Campbell
parent 10df97c542
commit f76e5111f0
@@ -37,7 +37,7 @@ const getHomeFeedSpeed = createSelector([
state => state.getIn(['timelines', 'home', 'pendingItems'], ImmutableList()),
state => state.get('statuses'),
], (statusIds, pendingStatusIds, statusMap) => {
const recentStatusIds = pendingStatusIds.size > 0 ? pendingStatusIds : statusIds;
const recentStatusIds = pendingStatusIds.concat(statusIds);
const statuses = recentStatusIds.filter(id => id !== null).map(id => statusMap.get(id)).filter(status => status?.get('account') !== me).take(20);
if (statuses.isEmpty()) {