From 0e6f9358ddfc68088c624aa1d66f6f0fcf36565a Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 15 Aug 2022 16:16:35 +0200 Subject: [PATCH] adjust algo again --- files/routes/front.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/routes/front.py b/files/routes/front.py index db05a4f6e..0dccc3930 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -125,10 +125,10 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, ccmode="false" if sort == 'hot': ti = int(time.time()) + 3600 - if SITE == 'watchpeopledie.co': - posts = posts.order_by(-1000000*(Submission.upvotes - Submission.downvotes + 1)/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc()) - else: + if SITE_NAME == 'rDrama': posts = posts.order_by(-1000000*(Submission.realupvotes + 1 + Submission.comment_count/num + func.least(50, (func.length(Submission.body_html)-func.length(func.replace(Submission.body_html,' 1).order_by(Submission.bump_utc.desc(), Submission.created_utc.desc()) else: