sfd
This commit is contained in:
parent
93f4606233
commit
56951eee1b
2 changed files with 1 additions and 4 deletions
|
@ -171,7 +171,7 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
|
||||||
|
|
||||||
if sort == "hot":
|
if sort == "hot":
|
||||||
ti = int(time.time())
|
ti = int(time.time())
|
||||||
posts = posts.order_by(-10000000*(Submission.upvotes - Submission.downvotes + 1)/(ti - Submission.created_utc + 3600))
|
posts = posts.order_by(-1000000*(Submission.upvotes - Submission.downvotes + 1)/(ti - Submission.created_utc + 3600))
|
||||||
elif sort == "new":
|
elif sort == "new":
|
||||||
posts = posts.order_by(Submission.created_utc.desc())
|
posts = posts.order_by(Submission.created_utc.desc())
|
||||||
elif sort == "old":
|
elif sort == "old":
|
||||||
|
|
|
@ -104,9 +104,6 @@ def post_id(pid, anything=None, v=None):
|
||||||
|
|
||||||
post = get_post(pid, v=v)
|
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 post.club and not (v and v.paid_dues): abort(403)
|
||||||
|
|
||||||
if v:
|
if v:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue