mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
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++) {
|
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…
Add table
Reference in a new issue