restore downvotes acting like upvotes in rdrama for comments

remotes/1693045480750635534/spooky-22
Aevann1 2022-08-19 14:50:35 +02:00
parent 4b1cc2a523
commit df2f5d3b61
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,8 @@ def sort_comments(sort, comments):
return comments.order_by((Comment.upvotes+1)/(Comment.downvotes+1) + (Comment.downvotes+1)/(Comment.upvotes+1), Comment.downvotes.desc(), Comment.id.desc())
elif sort == "bottom":
return comments.order_by(Comment.upvotes - Comment.downvotes)
elif SITE_NAME == 'rDrama':
return comments.order_by(Comment.realupvotes.desc(), Comment.id.desc())
else:
return comments.order_by(Comment.downvotes - Comment.upvotes, Comment.id.desc())