This commit is contained in:
Aevann1 2021-09-27 23:46:35 +02:00
parent 8e287aca6c
commit ab18b16930
8 changed files with 40 additions and 37 deletions

View file

@ -564,10 +564,10 @@ def api_comment(v):
cache.delete_memoized(comment_idlist)
v.comment_count = v.comments.filter(Comment.parent_submission != None).filter_by(is_banned=False, deleted_utc=0).count()
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).options(lazyload('*')).filter_by(parent_submission=parent_post.id).count()
parent_post.comment_count = g.db.query(Comment.id).options(lazyload('*')).filter_by(parent_submission=parent_post.id).count()
g.db.add(parent_post)
c.voted = 1