zeppi 2022-01-19 14:25:37 -05:00
parent 064d8738dd
commit db74077e29

View file

@ -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,
});