mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-14 12:18:30 +03:00
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);
|
||||
}
|
||||
|
||||
value = dedupeBoosts(value, instance);
|
||||
value = filteredItems(value, 'home');
|
||||
value.forEach((item) => {
|
||||
saveStatus(item, instance);
|
||||
});
|
||||
value = dedupeBoosts(value, instance);
|
||||
|
||||
// ENFORCE sort by datetime (Latest first)
|
||||
value.sort((a, b) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue