diff --git a/files/routes/front.py b/files/routes/front.py index 81f7716f6d..2b97d5de9f 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -173,7 +173,6 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words=' if sort == "hot": ti = int(time.time()) posts = posts.order_by(-1*(Submission.upvotes - Submission.downvotes + 1)/((ti - Submission.created_utc + 3600)/1000)) - elif sort == "new": posts = posts.order_by(Submission.created_utc.desc()) elif sort == "old": @@ -189,7 +188,6 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words=' posts = posts.offset(25 * (page - 1)).limit(26).all() - next_exists = (len(posts) > 25) posts = posts[:25]