mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Not showing past first few pages of history
This commit is contained in:
@@ -13,7 +13,7 @@ function hasDifferentItems(prevItems, currentItems, idProp = 'id') {
|
|||||||
currentItemIds.add(currentItem[idProp]);
|
currentItemIds.add(currentItem[idProp]);
|
||||||
});
|
});
|
||||||
|
|
||||||
return prevItems.every((prevItem) => currentItemIds.has(prevItem[idProp]));
|
return prevItems.some((prevItem) => !currentItemIds.has(prevItem[idProp]));
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hasDifferentItems;
|
export default hasDifferentItems;
|
||||||
|
Reference in New Issue
Block a user