fdfd
This commit is contained in:
parent
19718a4d95
commit
e49a65aaf5
1 changed files with 2 additions and 3 deletions
|
@ -114,9 +114,8 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def replies(self):
|
def replies(self):
|
||||||
#r = self.__dict__.get("replies", None)
|
r = self.__dict__.get("replies", None)
|
||||||
#if not r and r != []:
|
if not r and r != []: r = sorted([x for x in self.child_comments if not x.author.shadowbanned], key=lambda x: x.score, reverse=True)
|
||||||
r = sorted([x for x in self.child_comments if not x.author.shadowbanned], key=lambda x: x.score, reverse=True)
|
|
||||||
return r
|
return r
|
||||||
|
|
||||||
@replies.setter
|
@replies.setter
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue