remove replies from comment json temporarily until i figure it out

pull/83/head
Aevann1 2022-12-20 23:12:12 +02:00
parent 90aff8f086
commit e80dab6bb9
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ class Comment(Base):
'is_bot': self.is_bot,
'flags': flags,
'author': '👻' if self.ghost else self.author.json,
'replies': [x.json(db=db) for x in self.replies(sort="old", v=None, db=db)]
# 'replies': [x.json(db=db) for x in self.replies(sort="old", v=None, db=db)] # WORKER TIMEOUTS ON BUGTHREAD
}
if self.level >= 2: data['parent_comment_id'] = self.parent_comment_id