This commit is contained in:
Aevann1 2022-02-04 07:39:04 +02:00
parent 6e9be2817a
commit e15f48ffb8

View file

@ -198,6 +198,7 @@ class Comment(Base):
@property
def replies(self):
if self.id == 1313520:
print('wtf')
print(self.replies2)
return []
if self.replies2 != None: return [x for x in self.replies2 if not x.author.shadowbanned]