This commit is contained in:
Aevann1 2022-01-29 15:57:55 +02:00
parent aeadd31521
commit afb96c7d60
2 changed files with 3 additions and 6 deletions

View file

@ -985,10 +985,7 @@ def saved_comments(v, username):
page=int(request.values.get("page",1))
firstrange = 25 * (page - 1)
secondrange = firstrange+26
ids=v.saved_comment_idlist()[firstrange:secondrange]
ids=v.saved_comment_idlist(page=page)
next_exists=len(ids) > 25