forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-08 01:20:05 +02:00
parent b8b8336e41
commit b3397930b3
1 changed files with 2 additions and 4 deletions

View File

@ -187,10 +187,8 @@ def get_comment(i, v=None, graceful=False, **kwargs):
)
).first()
print(f"v.id = {v.id}")
vts = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=Comment.id)
print(f"vts = {vts}")
vt = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=Comment.id).first()
vts = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id)
vt = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id).first()
comment._is_blocking = block and block.user_id == v.id
comment._is_blocked = block and block.target_id == v.id
comment.voted = vt.vote_type if vt else 0