forked from rDrama/rDrama
1
0
Fork 0

make position of notifs that have the same created_utc ordered by comment id

master
Aevann 2023-04-28 11:43:10 +02:00
parent 65d548683f
commit ab0c194869
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ def notifications(v:User):
Comment.deleted_utc == 0,
)
comments = comments.order_by(Notification.created_utc.desc())
comments = comments.order_by(Notification.created_utc.desc(), Comment.id.desc())
comments = comments.offset(PAGE_SIZE * (page - 1)).limit(PAGE_SIZE+1).all()
next_exists = (len(comments) > PAGE_SIZE)