Merge pull request #1143 from lbryio/claim-update
Include updated channels in results
This commit is contained in:
commit
4b67f8d9a5
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ reducers[ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED] = (state, action) => {
|
||||||
const byId = Object.assign({}, state.byId);
|
const byId = Object.assign({}, state.byId);
|
||||||
const pendingById = Object.assign({}, state.pendingById);
|
const pendingById = Object.assign({}, state.pendingById);
|
||||||
|
|
||||||
claims.filter(claim => claim.category && claim.category.match(/claim/)).forEach(claim => {
|
claims.filter(claim => claim.category && (claim.category.match(/claim/) || claim.category.match(/update/))).forEach(claim => {
|
||||||
byId[claim.claim_id] = claim;
|
byId[claim.claim_id] = claim;
|
||||||
|
|
||||||
const pending = Object.values(pendingById).find(
|
const pending = Object.values(pendingById).find(
|
||||||
|
|
Loading…
Reference in a new issue