master
Aevann1 2021-09-24 19:36:09 +02:00
parent c397071f62
commit ae46db94a1
2 changed files with 4 additions and 1 deletions

View File

@ -171,7 +171,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
if sort == "hot":
ti = int(time.time()) + 3600
posts = posts.order_by(-100000*(Submission.upvotes + 1)/(ti - Submission.created_utc))
posts = posts.order_by(-1000*(Submission.upvotes + 1)/(ti - Submission.created_utc))
elif sort == "new":
posts = posts.order_by(Submission.created_utc.desc())
elif sort == "old":

View File

@ -104,6 +104,9 @@ def post_id(pid, anything=None, v=None):
post = get_post(pid, v=v)
ti = int(time.time()) + 3600
print(post.upvotes + 1)/(ti - post.created_utc)
if post.club and not (v and v.paid_dues): abort(403)
if v: