remotes/1693045480750635534/spooky-22
Aevann1 2022-04-16 18:41:38 +02:00
parent 777baa68eb
commit 690e1ba280
1 changed files with 2 additions and 0 deletions

View File

@ -220,6 +220,8 @@ class Comment(Base):
@property
def replies(self):
if self.replies2 != None: return [x for x in self.replies2 if not x.author.shadowbanned]
if not self.parent_submission:
return sorted((x for x in self.child_comments if x.author and not x.author.shadowbanned and x.author_id not in (AUTOPOLLER_ID, AUTOBETTER_ID, AUTOCHOICE_ID)), key=lambda x: x.created_utsc)
return sorted((x for x in self.child_comments if x.author and not x.author.shadowbanned and x.author_id not in (AUTOPOLLER_ID, AUTOBETTER_ID, AUTOCHOICE_ID)), key=lambda x: x.realupvotes, reverse=True)
@property