Fix comment count not incremented when it was previously 0

It was causing the nudge to add a comment to still appear after one has just entered a comment.

Ticket: 928
This commit is contained in:
infinite-persistence 2022-03-11 12:09:18 +08:00
parent ca7b98ecf5
commit 6b77cb2bfa
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -120,7 +120,7 @@ export default handleActions(
newCommentIds.unshift(comment.comment_id); newCommentIds.unshift(comment.comment_id);
byId[claimId] = newCommentIds; byId[claimId] = newCommentIds;
if (totalCommentsById[claimId]) { if (totalCommentsById.hasOwnProperty(claimId)) {
totalCommentsById[claimId] += 1; totalCommentsById[claimId] += 1;
} }
@ -596,7 +596,7 @@ export default handleActions(
} }
} }
if (totalCommentsById[claimId]) { if (totalCommentsById.hasOwnProperty(claimId)) {
totalCommentsById[claimId] = Math.max(0, totalCommentsById[claimId] - 1); totalCommentsById[claimId] = Math.max(0, totalCommentsById[claimId] - 1);
} }