diff --git a/files/classes/comment.py b/files/classes/comment.py index d4c7063364..a0c4001067 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -305,7 +305,7 @@ class Comment(Base): return data def realbody(self, v): - if self.post and self.post.club and not (v and (v.paid_dues or v.id == self.author_id)): return f"

{cc} ONLY

" + if self.post and self.post.club and not (v and (v.paid_dues or v.id in [self.author_id, self.post.author_id])): return f"

{cc} ONLY

" body = self.body_html @@ -342,7 +342,7 @@ class Comment(Base): return body def plainbody(self, v): - if self.post and self.post.club and not (v and (v.paid_dues or v.id == self.author_id)): return f"

{cc} ONLY

" + if self.post and self.post.club and not (v and (v.paid_dues or v.id in [self.author_id, self.post.author_id])): return f"

{cc} ONLY

" body = self.body