diff --git a/files/routes/front.py b/files/routes/front.py index 36cdd2b366..b2a807f76e 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -221,7 +221,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words=' print("WTF") print([x.comment_count for x in posts.all()]) posts = posts.order_by(Submission.comment_count.desc()) - return([x.comment_count for x in posts.all()]) + print([x.comment_count for x in posts.all()]) posts = posts.offset(25 * (page - 1)).limit(26).all()