This commit is contained in:
Aevann1 2021-08-23 20:42:19 +02:00
parent 7d3290251f
commit 88c521f137

View file

@ -115,9 +115,8 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
@property
def replies(self):
r = self.__dict__.get("replies", None)
if not r and r != []: r = sorted([x for x in self.child_comments], key=lambda x: x.score, reverse=True)
if not r and r != []: r = sorted([x for x in self.child_comments if not x.shadowbanned], key=lambda x: x.score, reverse=True)
return r
@replies.setter