remotes/1693045480750635534/spooky-22
Aevann1 2021-11-26 02:35:51 +02:00
parent df60baa11e
commit 4a45452a8c
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ def post_id(pid, anything=None, v=None):
post.replies = comments.filter(Comment.is_pinned != None).all() + comments.filter(Comment.level == 1, Comment.is_pinned == None).all()
if request.host == 'rdrama.net' and pid in [BUG_THREAD, EMOJI_THREAD]: post.replies = post.replies[:10]
if request.host == 'rdrama.net' and pid in [BUG_THREAD, EMOJI_THREAD] and sort == 'new': post.replies = post.replies[:10]
post.views += 1
g.db.add(post)