diff --git a/files/routes/posts.py b/files/routes/posts.py index 9a68e82de..28a1f3fe1 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -171,7 +171,7 @@ def post_id(pid, anything=None, v=None): comment.is_blocked = c[3] or 0 output.append(comment) - comments = output + comments2 = output else: comments = g.db.query(Comment).join(User, User.id == Comment.author_id).filter(User.shadowbanned == None, Comment.parent_submission == post.id, Comment.author_id != AUTOPOLLER_ID, Comment.level == 1, Comment.is_pinned == None) @@ -189,21 +189,21 @@ def post_id(pid, anything=None, v=None): offset = int(request.values.get("offset", 0)) if offset: comments = comments.offset(offset) - comments = comments.all() + comments2 = comments.all() - comments2 = [] - count = 0 - for comment in comments: - comments2.append(comment) - count += g.db.query(Comment.id).filter_by(top_comment_id=comment.id).count() + 1 - offset += 1 - if count > 10: break + if post.created_utc > 1638672040: + comments2 = [] + count = 0 + for comment in comments: + comments2.append(comment) + count += g.db.query(Comment.id).filter_by(top_comment_id=comment.id).count() + 1 + offset += 1 + if count > 10: break - if len(comments) == len(comments2): offset = None + if len(comments) == len(comments2): offset = None post.replies = pinned + comments2 - if request.host == 'rdrama.net' and pid in [BUG_THREAD, EMOJI_THREAD] and not request.values.get("sort"): post.replies = post.replies[:10] post.views += 1