dfsf
This commit is contained in:
parent
c41137fa7f
commit
91424fa6ae
1 changed files with 2 additions and 4 deletions
|
@ -101,8 +101,7 @@ def api_vote_post(post_id, new, v):
|
||||||
post.author.coins += 1
|
post.author.coins += 1
|
||||||
post.author.truecoins += 1
|
post.author.truecoins += 1
|
||||||
g.db.add(post.author)
|
g.db.add(post.author)
|
||||||
real = v.profileurl or v.namecolor != defaultcolor or v.customtitle
|
real = bool(v.profileurl) or bool(v.customtitle) or v.namecolor != defaultcolor
|
||||||
if real == None: real = False
|
|
||||||
vote = Vote(user_id=v.id,
|
vote = Vote(user_id=v.id,
|
||||||
vote_type=new,
|
vote_type=new,
|
||||||
submission_id=post_id,
|
submission_id=post_id,
|
||||||
|
@ -170,8 +169,7 @@ def api_vote_comment(comment_id, new, v):
|
||||||
comment.author.coins += 1
|
comment.author.coins += 1
|
||||||
comment.author.truecoins += 1
|
comment.author.truecoins += 1
|
||||||
g.db.add(comment.author)
|
g.db.add(comment.author)
|
||||||
real = v.profileurl or v.namecolor != defaultcolor or v.customtitle
|
real = bool(v.profileurl) or bool(v.customtitle) or v.namecolor != defaultcolor
|
||||||
if real == None: real = False
|
|
||||||
vote = CommentVote(user_id=v.id,
|
vote = CommentVote(user_id=v.id,
|
||||||
vote_type=new,
|
vote_type=new,
|
||||||
comment_id=comment_id,
|
comment_id=comment_id,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue