fdgd
This commit is contained in:
parent
25892d6b6e
commit
91aed21eb3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue