This commit is contained in:
Aevann1 2022-03-29 20:23:40 +02:00
parent b2adcd792a
commit cfa74bf3d2
7 changed files with 3 additions and 3 deletions

View file

@ -397,7 +397,7 @@ class Comment(Base):
if not self.total_choice_voted(v): body += ' d-none'
body += f'"> - <a href="/votes?link=t3_{c.id}"><span id="choice-{c.id}">{c.upvotes}</span> votes</a></span></label></div>'
if self.author.sig_html and not self.ghost and (self.author_id == MOOSE_ID or not (v and v.sigs_disabled)):
if self.author.sig_html and (self.author_id == MOOSE_ID or (not self.ghost and not (v and v.sigs_disabled))):
body += f"<hr>{self.author.sig_html}"
return body