forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-02-04 07:40:17 +02:00
parent 455264c223
commit 3d20954b16
1 changed files with 2 additions and 2 deletions

View File

@ -197,10 +197,10 @@ class Comment(Base):
@property
def replies(self):
print(self.id)
print(self.id, flush=True)
if self.id == 1313520:
print('wtf')
print(self.replies2)
print(self.replies2, flush=True)
return []
if self.replies2 != None: return [x for x in self.replies2 if not x.author.shadowbanned]
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)), key=lambda x: x.realupvotes, reverse=True)