diff --git a/flow-typed/Lbry.js b/flow-typed/Lbry.js index 89451386b..ac54357fd 100644 --- a/flow-typed/Lbry.js +++ b/flow-typed/Lbry.js @@ -155,6 +155,7 @@ declare type CommentPinResponse = { declare type CommentAbandonResponse = { // keyed by the CommentId given abandoned: boolean, + claim_id: string, }; declare type ChannelListResponse = { diff --git a/ui/redux/actions/comments.js b/ui/redux/actions/comments.js index c67d2d368..0f4b18789 100644 --- a/ui/redux/actions/comments.js +++ b/ui/redux/actions/comments.js @@ -831,6 +831,9 @@ export function doCommentAbandon( comment_id: commentId, }, }); + + // Update the commented-channels list. + dispatch(doFetchMyCommentedChannels(result.claim_id)); } else { dispatch({ type: ACTIONS.COMMENT_ABANDON_FAILED,