This commit is contained in:
Aevann1 2022-02-20 04:16:19 +02:00
parent 2cfccf0243
commit 5dfb01f295

View file

@ -364,7 +364,7 @@ def leaderboard(v):
users11 = users11.limit(25).all()
if pos11[1] < 25 and v not in (x[0] for x in users11):
pos11 = (26, pos11[2])
pos11 = (26, pos11[1])
if SITE_NAME == 'Drama':
sq = g.db.query(Marsey.author_id, func.count(Marsey.author_id).label("count"), func.rank().over(order_by=func.count(Marsey.author_id).desc()).label("rank")).group_by(Marsey.author_id).subquery()