fix wrong page number
This commit is contained in:
parent
78232eb2a9
commit
36c106e16c
1 changed files with 4 additions and 2 deletions
|
@ -386,13 +386,15 @@ export function doFetchClaimsByChannel(uri, page) {
|
||||||
lbry.claim_list_by_channel({ uri, page: page || 1 }).then(result => {
|
lbry.claim_list_by_channel({ uri, page: page || 1 }).then(result => {
|
||||||
const claimResult = result[uri] || {};
|
const claimResult = result[uri] || {};
|
||||||
const { claims_in_channel, returned_page } = claimResult;
|
const { claims_in_channel, returned_page } = claimResult;
|
||||||
|
const claims = claims_in_channel || [];
|
||||||
|
const page = returned_page || undefined;
|
||||||
|
|
||||||
dispatch({
|
dispatch({
|
||||||
type: types.FETCH_CHANNEL_CLAIMS_COMPLETED,
|
type: types.FETCH_CHANNEL_CLAIMS_COMPLETED,
|
||||||
data: {
|
data: {
|
||||||
uri,
|
uri,
|
||||||
claims: claims_in_channel || [],
|
claims,
|
||||||
page: returned_page,
|
page,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue