diff --git a/files/classes/comment.py b/files/classes/comment.py index 4dc99bdc92..b6779e8907 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -297,7 +297,7 @@ class Comment(Base): if f'{s}{o.body}{s}' in body: body = body.replace(f'{s}{o.body}{s}', option_body) - else: + elif o.created_utc < 1677622477: body += option_body if not self.ghost and self.author.show_sig(v): diff --git a/files/classes/submission.py b/files/classes/submission.py index 489818a1fe..cd0a84edc6 100644 --- a/files/classes/submission.py +++ b/files/classes/submission.py @@ -326,7 +326,7 @@ class Submission(Base): if f'{s}{o.body}{s}' in body: body = body.replace(f'{s}{o.body}{s}', option_body) - else: + elif o.created_utc < 1677622477: body += option_body if not listing and not self.ghost and self.author.show_sig(v):