decrease poll change timestamp

pull/136/head
Aevann 2023-03-01 00:42:58 +02:00
parent 4c38cb24ac
commit 76e2e8e321
2 changed files with 2 additions and 2 deletions

View File

@ -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):

View File

@ -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):