This commit is contained in:
Aevann1 2021-10-07 08:43:42 +02:00
parent b56be2a1b8
commit c54a5dea4f

View file

@ -87,6 +87,9 @@ def api_vote_post(post_id, new, v):
post.author.truecoins -= 1
g.db.add(post.author)
g.db.delete(existing)
else:
existing.vote_type = new
g.db.add(existing)
elif new != 0:
post.author.coins += 1
post.author.truecoins += 1
@ -141,6 +144,9 @@ def api_vote_comment(comment_id, new, v):
comment.author.truecoins -= 1
g.db.add(comment.author)
g.db.delete(existing)
else:
existing.vote_type = new
g.db.add(existing)
elif new != 0:
comment.author.coins += 1
comment.author.truecoins += 1