This commit is contained in:
Aevann1 2021-09-25 03:35:51 +02:00
parent fd207174e0
commit efc41907a5

View file

@ -219,7 +219,9 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
posts = posts.order_by(Submission.upvotes - Submission.downvotes) posts = posts.order_by(Submission.upvotes - Submission.downvotes)
elif sort == "comments": elif sort == "comments":
print("WTF") print("WTF")
print([x.comment_count for x in posts.all()])
posts = posts.order_by(Submission.comment_count.desc()) posts = posts.order_by(Submission.comment_count.desc())
return([x.comment_count for x in posts.all()])
posts = posts.offset(25 * (page - 1)).limit(26).all() posts = posts.offset(25 * (page - 1)).limit(26).all()