apply https://github.com/OdyseeTeam/odysee-frontend/pull/726 #7421
1 changed files with 2 additions and 2 deletions
|
@ -161,8 +161,8 @@ export const doFetchItemsInCollections = (
|
||||||
|
|
||||||
for (let i = 0; i < Math.ceil(totalItems / batchSize); i++) {
|
for (let i = 0; i < Math.ceil(totalItems / batchSize); i++) {
|
||||||
batches[i] = Lbry.claim_search({
|
batches[i] = Lbry.claim_search({
|
||||||
claim_ids: claim.value.claims,
|
claim_ids: claim.value.claims.slice(i * batchSize, (i + 1) * batchSize),
|
||||||
page: i + 1,
|
page: 1,
|
||||||
page_size: batchSize,
|
page_size: batchSize,
|
||||||
no_totals: true,
|
no_totals: true,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue