From 76e2e8e3213306d7a6b74cea60af408fbfc33bef Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 1 Mar 2023 00:42:58 +0200 Subject: [PATCH] decrease poll change timestamp --- files/classes/comment.py | 2 +- files/classes/submission.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):