Aevann1 2022-07-09 13:19:15 +02:00
parent 4a3aec0859
commit f166522b26
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