Fix deduping happened before saving the status
This commit is contained in:
parent
157daa68df
commit
4f8b5cf5fb
1 changed files with 1 additions and 1 deletions
|
@ -30,11 +30,11 @@ function Following({ title, path, id, ...props }) {
|
||||||
console.log('First load', latestItem.current);
|
console.log('First load', latestItem.current);
|
||||||
}
|
}
|
||||||
|
|
||||||
value = dedupeBoosts(value, instance);
|
|
||||||
value = filteredItems(value, 'home');
|
value = filteredItems(value, 'home');
|
||||||
value.forEach((item) => {
|
value.forEach((item) => {
|
||||||
saveStatus(item, instance);
|
saveStatus(item, instance);
|
||||||
});
|
});
|
||||||
|
value = dedupeBoosts(value, instance);
|
||||||
|
|
||||||
// ENFORCE sort by datetime (Latest first)
|
// ENFORCE sort by datetime (Latest first)
|
||||||
value.sort((a, b) => {
|
value.sort((a, b) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue