VIEW MORE
This commit is contained in:
parent
53ed768b3e
commit
9fed513b1e
1 changed files with 12 additions and 21 deletions
|
@ -171,17 +171,7 @@ def post_id(pid, anything=None, v=None):
|
||||||
comment.is_blocked = c[3] or 0
|
comment.is_blocked = c[3] or 0
|
||||||
output.append(comment)
|
output.append(comment)
|
||||||
|
|
||||||
comments = []
|
comments = output
|
||||||
count = 0
|
|
||||||
for comment in output:
|
|
||||||
comments.append(comment)
|
|
||||||
count += g.db.query(Comment.id).filter_by(top_comment_id=comment.id).count()
|
|
||||||
offset += 1
|
|
||||||
if count > 3: break
|
|
||||||
|
|
||||||
if len(output) == len(comments): offset = None
|
|
||||||
|
|
||||||
post.replies = pinned + comments
|
|
||||||
else:
|
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)
|
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)
|
||||||
|
|
||||||
|
@ -207,12 +197,13 @@ def post_id(pid, anything=None, v=None):
|
||||||
comments2.append(comment)
|
comments2.append(comment)
|
||||||
count += g.db.query(Comment.id).filter_by(top_comment_id=comment.id).count()
|
count += g.db.query(Comment.id).filter_by(top_comment_id=comment.id).count()
|
||||||
offset += 1
|
offset += 1
|
||||||
if count > 3: break
|
if count > 50: break
|
||||||
|
|
||||||
if len(comments) == len(comments2): offset = None
|
if len(comments) == len(comments2): offset = None
|
||||||
|
|
||||||
post.replies = pinned + comments2
|
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]
|
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
|
post.views += 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue