remotes/1693045480750635534/spooky-22
Aevann1 2021-10-07 23:15:44 +02:00
parent 7fe02dd19b
commit b2231a23bb
1 changed files with 2 additions and 2 deletions

View File

@ -274,11 +274,11 @@ def image_posts_listing(v):
try: page = int(request.values.get('page', 1))
except: page = 1
posts = g.db.query(Submission.id).order_by(Submission.id.desc())
posts = g.db.query(Submission).order_by(Submission.id.desc())
firstrange = 25 * (page - 1)
secondrange = firstrange+26
posts = [x[0] for x in posts if x.is_image][firstrange:secondrange]
posts = [x.id for x in posts if x.is_image][firstrange:secondrange]
next_exists = (len(posts) > 25)
posts = get_posts(posts[:25], v=v)