From 0930eb50c78a6e4e3ff52a478af29daa56ccadd3 Mon Sep 17 00:00:00 2001 From: Aevann Date: Tue, 21 May 2024 00:15:40 +0300 Subject: [PATCH] remove collapsing for shadowbanned on fishyman requests --- files/classes/comment.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/files/classes/comment.py b/files/classes/comment.py index 932d966af..95a753a1e 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -472,8 +472,6 @@ class Comment(Base): if self.is_banned: return True - if self.author.shadowbanned: return True - if v and v.filter_words and self.body and any(x in self.body for x in v.filter_words): return True return False