diff --git a/files/classes/comment.py b/files/classes/comment.py index 079edc14a8..aadf8f4d4d 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) - elif not o.created_utc or o.created_utc < 1677622477: + elif not o.created_utc or o.created_utc < 1677622270: 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 54af35ec98..50622a2b0b 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) - elif not o.created_utc or o.created_utc < 1677622477: + elif not o.created_utc or o.created_utc < 1677622270: body += option_body if not listing and not self.ghost and self.author.show_sig(v):