make me autoupvote posts in /h/slackernews and /h/space

remotes/1693045480750635534/spooky-22
Aevann1 2022-07-01 12:41:26 +02:00
parent a4852b784c
commit fe173398fc
1 changed files with 10 additions and 0 deletions

View File

@ -1181,6 +1181,16 @@ def submit_post(v, sub=None):
post.upvotes += 3
g.db.add(post)
if request.host == 'rdrama.net' and post.sub in ('slackernews','space') and v.id != AEVANN_ID:
g.db.flush()
autovote = Vote(user_id=AEVANN_ID, submission_id=post.id, vote_type=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)
cache.delete_memoized(User.userpagelisting)