This commit is contained in:
Aevann1 2021-11-13 23:07:59 +02:00
parent 708a16ea75
commit de57a2effa
5 changed files with 16 additions and 22 deletions

View file

@ -237,14 +237,6 @@ def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, filter_words='
posts = posts[:size]
if v and v.shadowbanned:
for post in posts:
if post.author and post.author.shadowbanned and 86400 > time.time() - post.created_utc > 600:
rand = random.randint(5,20)
if post.upvotes < rand: post.upvotes = rand
g.db.add(post)
g.db.commit()
pins = g.db.query(Submission).filter(Submission.stickied != None, Submission.is_banned == False)
if v and v.admin_level == 0:
blocking = [x[0] for x in g.db.query(UserBlock.target_id).filter_by(user_id=v.id).all()]