Aevann1 2022-07-09 15:29:00 +02:00
parent 85d59d5656
commit 95194359fa
1 changed files with 1 additions and 2 deletions

View File

@ -305,8 +305,7 @@ class Comment(Base):
if self.level>=2: data['parent_comment_id']= self.parent_comment_id
if "replies" in self.__dict__:
data['replies']=[x.json_core for x in self.replies(None)]
data['replies'] = [x.json_core for x in self.replies()]
return data