Made it possible to downvote poll options again

for schizocel my beloved
remotes/1693045480750635534/spooky-22
Aevann1 2022-06-28 09:20:29 +02:00 committed by GitHub
parent 856a2c905c
commit 7e7450ef33
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ def api_vote_comment(comment_id, new, v):
comment = get_comment(comment_id)
if comment.author_id in poll_bots: return {"error": "forbidden."}, 403
if new == 1 and comment.author_id in poll_bots: return {"error": "forbidden."}, 403
existing = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
@ -287,4 +287,4 @@ def api_vote_choice(comment_id, v):
g.db.flush()
comment.upvotes = g.db.query(CommentVote).filter_by(comment_id=comment.id, vote_type=1).count()
g.db.add(comment)
return "", 204
return "", 204