This commit is contained in:
Aevann1 2021-09-21 23:45:48 +02:00
parent 25d9dd0279
commit 2a70f3aa5b
4 changed files with 0 additions and 53 deletions

View file

@ -192,23 +192,6 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
secondrange = firstrange+100
posts = posts[firstrange:secondrange]
# if random.random() < 0.004:
# for post in posts:
# if post.author and post.author.shadowbanned:
# rand = random.randint(5,20)
# if post.score > rand: continue
# rand = random.randint(500,1400)
# vote = Vote(user_id=rand,
# vote_type=random.choice([-1, 1, 1, 1, 1]),
# submission_id=post.id)
# g.db.add(vote)
# try: g.db.flush()
# except: g.db.rollback()
# post.upvotes = g.db.query(Vote).options(lazyload('*')).filter_by(submission_id=post.id, vote_type=1).count()
# post.downvotes = g.db.query(Vote).options(lazyload('*')).filter_by(submission_id=post.id, vote_type=-1).count()
# post.views = post.views + random.randint(7,10)
# g.db.add(post)
next_exists = (len(posts) > 25)
posts = posts[:25]