From 75bdbed7f947c0b97419dc0c10d7c687761af614 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 27 Jun 2022 21:08:05 +0200 Subject: [PATCH] reduce initial viewmore threshold for poorcels --- files/routes/posts.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index f0b075b869..d99338b0de 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -203,6 +203,9 @@ def post_id(pid, anything=None, v=None, sub=None): offset = 0 ids = set() + if v and v.poorcel: threshold = 50 + else: threshold = 100 + if post.comment_count > 60 and not request.headers.get("Authorization") and not request.values.get("all"): comments2 = [] count = 0 @@ -211,7 +214,7 @@ def post_id(pid, anything=None, v=None, sub=None): comments2.append(comment) ids.add(comment.id) count += g.db.query(Comment).filter_by(parent_submission=post.id, top_comment_id=comment.id).count() + 1 - if count > 100: break + if count > 50: break else: for comment in comments: comments2.append(comment)