This commit is contained in:
Aevann1 2021-09-27 23:46:35 +02:00
parent 8e287aca6c
commit ab18b16930
8 changed files with 40 additions and 37 deletions

View file

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