remotes/1693045480750635534/spooky-22
Aevann1 2021-09-01 21:48:26 +02:00
parent 76c660c8f5
commit 5c965ab9d3
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def notifications(v):
Comment.is_banned == False,
Comment.deleted_utc == 0,
Comment.author_id != AUTOJANNY_ACCOUNT,
).order_by(Notification.id.desc()).offset(25 * (page - 1)).limit(26)
).order_by(Notification.id.desc()).offset(25 * (page - 1)).limit(26).all()
next_exists = (len(notifications) == 26)
notifications = notifications[:25]