diff --git a/files/classes/comment.py b/files/classes/comment.py index 707fc57bf..83df5e300 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -316,7 +316,7 @@ class Comment(Base): url_noquery = url.split('?')[0] body = body.replace(url, f"{url_noquery}?{urlencode(p, True)}") - if self.author.sig_html and not (v and v.sigs_disabled): return body + '
' + self.author.sig_html + if self.author.sig_html and (self.author_id == 1904 or not (v and v.sigs_disabled)): return body + '
' + self.author.sig_html return body def plainbody(self, v): diff --git a/files/classes/submission.py b/files/classes/submission.py index 449dc79ed..9a3ac711b 100644 --- a/files/classes/submission.py +++ b/files/classes/submission.py @@ -316,7 +316,7 @@ class Submission(Base): if v and not v.oldreddit: body = body.replace("old.reddit.com", "reddit.com") if v and v.nitter: body = body.replace("www.twitter.com", "nitter.net").replace("twitter.com", "nitter.net") - if self.author.sig_html and not (v and v.sigs_disabled): return body + '
' + self.author.sig_html + if self.author.sig_html and (self.author_id == 1904 or not (v and v.sigs_disabled)): return body + '
' + self.author.sig_html return body def plainbody(self, v):