Fix f6dea300b for logged-out users.

remotes/1693176582716663532/tmp_refs/heads/watchparty
Snakes 2022-11-13 21:12:08 -05:00
parent 7c0763d81f
commit 6169c02c89
Signed by: Snakes
GPG Key ID: E745A82778055C7E
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ class Comment(Base):
if self.is_banned: return True
if self.author.shadowbanned and not v.shadowbanned: return True
if self.author.shadowbanned and not (v and v.shadowbanned): return True
if (self.wordle_result) and (not self.body or len(self.body_html) <= 100) and 9 > self.level > 1: return True