include channel updates in claim data

Was fixed before in lbry-app, but lost during redux migration
Allows for selection of updated channels in the publish screen channel dropdown
This commit is contained in:
Thomas Zarebczan 2018-05-23 01:15:56 -04:00 committed by GitHub
parent c41899e784
commit f7de82daab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ reducers[ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED] = (state, action) => {
const byId = Object.assign({}, state.byId);
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;
const pending = Object.values(pendingById).find(