Count replies in comment count
This commit is contained in:
parent
30ffd5ad6f
commit
f71cbc33be
1 changed files with 7 additions and 1 deletions
|
@ -57,7 +57,13 @@ function reloadComments(jump) {
|
|||
});
|
||||
})
|
||||
.then(comments => {
|
||||
commentContainerHeader.innerHTML = `${comments.length} Comment${comments.length == 1 ? "" : "s"}`;
|
||||
let commentCount = comments.length;
|
||||
comments.forEach(comment => {
|
||||
if (comment.replies) {
|
||||
commentCount += comment.replies.length;
|
||||
}
|
||||
});
|
||||
commentContainerHeader.innerHTML = `${commentCount} Comment${commentCount == 1 ? "" : "s"}`;
|
||||
let html = "";
|
||||
if (comments.length == 0) {
|
||||
html = "<p>No comments yet! Be the first to make one.</p>";
|
||||
|
|
Loading…
Add table
Reference in a new issue