diff --git a/files/classes/comment.py b/files/classes/comment.py index 32aed8efe..f88853435 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -375,7 +375,7 @@ class Comment(Base): if path == '/admin/removed/comments': return False - if f'/{self.id}' in path: return False + if '?context' in path or f'/{self.id}' in path: return False if self.over_18 and not (v and v.over_18) and not (self.post and self.post.over_18): return True