forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-02 20:46:36 +02:00
parent f066ab94c9
commit 6e3865a80a
1 changed files with 2 additions and 2 deletions

View File

@ -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"<p>{cc} ONLY</p>"
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"<p>{cc} ONLY</p>"
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"<p>{cc} ONLY</p>"
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"<p>{cc} ONLY</p>"
body = self.body