This commit is contained in:
Aevann1 2021-10-06 01:45:37 +02:00
parent 25892d6b6e
commit 91aed21eb3

View file

@ -570,7 +570,7 @@ def api_comment(v):
v.comment_count = g.db.query(Comment.id).options(lazyload('*')).filter(Comment.author_id == v.id, Comment.parent_submission != None).filter_by(is_banned=False, deleted_utc=0).count()
g.db.add(v)
parent_post.comment_count = g.db.query(Comment.id).options(lazyload('*')).filter_by(parent_submission=parent_post.id).count()
parent_post.comment_count += 1
g.db.add(parent_post)
c.voted = 1