From db74077e293f3caf5abdde7c2d98acab4a535746 Mon Sep 17 00:00:00 2001 From: zeppi Date: Wed, 19 Jan 2022 14:25:37 -0500 Subject: [PATCH] apply https://github.com/OdyseeTeam/odysee-frontend/pull/726 --- ui/redux/actions/collections.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/redux/actions/collections.js b/ui/redux/actions/collections.js index ae060e8c9..c7f83a9c9 100644 --- a/ui/redux/actions/collections.js +++ b/ui/redux/actions/collections.js @@ -161,8 +161,8 @@ export const doFetchItemsInCollections = ( for (let i = 0; i < Math.ceil(totalItems / batchSize); i++) { batches[i] = Lbry.claim_search({ - claim_ids: claim.value.claims, - page: i + 1, + claim_ids: claim.value.claims.slice(i * batchSize, (i + 1) * batchSize), + page: 1, page_size: batchSize, no_totals: true, }); -- 2.45.2