Disallow commenting if failed to determine if commented before.
If we can't confirm that user has not used another channel to comment, then don't allow commenting at all. Otherwise, there's no point doing the check.
This commit is contained in:
parent
2bdae7637b
commit
3bb7e21d3c
1 changed files with 8 additions and 3 deletions
|
@ -284,11 +284,16 @@ export function doFetchMyCommentedChannels(claimId: ?string) {
|
|||
// $FlowFixMe
|
||||
return Promise.allSettled(params.map((p) => Comments.comment_list(p)))
|
||||
.then((response) => {
|
||||
response.forEach((res, i) => {
|
||||
if (res.status === 'fulfilled' && res.value.total_items > 0) {
|
||||
for (let i = 0; i < response.length; ++i) {
|
||||
if (response[i].status !== 'fulfilled') {
|
||||
// Meaningless if it couldn't confirm history for all own channels.
|
||||
return;
|
||||
}
|
||||
|
||||
if (response[i].value.total_items > 0) {
|
||||
commentedChannelIds.push(params[i].author_claim_id);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
dispatch({
|
||||
type: ACTIONS.COMMENT_FETCH_MY_COMMENTED_CHANNELS_COMPLETE,
|
||||
|
|
Loading…
Reference in a new issue