add resolve flag to doFetchClaimListMine

This commit is contained in:
Sean Yesmunt 2020-02-11 15:31:12 -05:00
parent ad58b8c6b9
commit 916ef0f647
2 changed files with 20 additions and 12 deletions

7
dist/bundle.es.js vendored
View file

@ -2887,7 +2887,12 @@ function doFetchClaimListMine(page = 1, pageSize = 99999) {
type: FETCH_CLAIM_LIST_MINE_STARTED
});
lbryProxy.claim_list({ page, page_size: pageSize, claim_type: ['stream', 'repost'] }).then(result => {
lbryProxy.claim_list({
page,
page_size: pageSize,
claim_type: ['stream', 'repost'],
resolve: true
}).then(result => {
const claims = result.items;
dispatch({

View file

@ -100,18 +100,21 @@ export function doFetchClaimListMine(page: number = 1, pageSize: number = 99999)
type: ACTIONS.FETCH_CLAIM_LIST_MINE_STARTED,
});
Lbry.claim_list({ page, page_size: pageSize, claim_type: ['stream', 'repost'] }).then(
(result: StreamListResponse) => {
const claims = result.items;
Lbry.claim_list({
page,
page_size: pageSize,
claim_type: ['stream', 'repost'],
resolve: true,
}).then((result: StreamListResponse) => {
const claims = result.items;
dispatch({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED,
data: {
claims,
},
});
}
);
dispatch({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED,
data: {
claims,
},
});
});
};
}