This commit is contained in:
parent
18c3bbe6e3
commit
11eed5c9eb
1 changed files with 2 additions and 2 deletions
|
@ -160,8 +160,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,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue