diff --git a/files/routes/posts.py b/files/routes/posts.py index dc87576f2..feb246b91 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -1201,13 +1201,17 @@ def submit_post(v, sub=None): if request.host == 'rdrama.net' and post.sub and post.sub not in ('dankchristianmemes','fatpeoplehate','braincels','truth') and v.id != AEVANN_ID: g.db.flush() - autovote = Vote(user_id=AEVANN_ID, submission_id=post.id, vote_type=1) + autovote = Vote( + user_id=AEVANN_ID, + submission_id=post.id, + vote_type=1 + ) + autovote.created_utc += 1 g.db.add(autovote) v.coins += 1 v.truecoins += 1 g.db.add(v) post.upvotes += 1 - post.created_utc += 1 g.db.add(post) cache.delete_memoized(frontlist)