Fix comment count not incremented when it was previously 0 (#7510)
It was causing the nudge to add a comment to still appear after one has just entered a comment. Ticket: Odysee 928
This commit is contained in:
parent
a7e70e4d21
commit
35276d5879
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ export default handleActions(
|
|||
newCommentIds.unshift(comment.comment_id);
|
||||
byId[claimId] = newCommentIds;
|
||||
|
||||
if (totalCommentsById[claimId]) {
|
||||
if (totalCommentsById.hasOwnProperty(claimId)) {
|
||||
totalCommentsById[claimId] += 1;
|
||||
}
|
||||
|
||||
|
@ -562,7 +562,7 @@ export default handleActions(
|
|||
}
|
||||
}
|
||||
|
||||
if (totalCommentsById[claimId]) {
|
||||
if (totalCommentsById.hasOwnProperty(claimId)) {
|
||||
totalCommentsById[claimId] = Math.max(0, totalCommentsById[claimId] - 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue