This commit is contained in:
Aevann1 2021-10-10 06:05:39 +02:00
parent 0befcc29b8
commit 923e8f0557
3 changed files with 5 additions and 4 deletions

View file

@ -357,7 +357,7 @@ class Comment(Base):
if any([x in self.body for x in v.filter_words]):
return True
if self.is_banned: return True
if self.is_banned or self.author.shadowbanned: return True
return False