mirror of https://github.com/Radarr/Radarr
Fixed: Not showing past first few pages of history
This commit is contained in:
parent
d7fd48ef25
commit
7584d95149
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue