remotes/1693045480750635534/spooky-22
Aevann1 2021-07-29 09:00:10 +02:00
parent 38c958b5a5
commit c5d94649ec
2 changed files with 3 additions and 3 deletions

View File

@ -29,12 +29,12 @@ def notifications(v):
cids = v.notification_subscriptions(page=page, all_=all_)
next_exists = (len(cids) == 26)
cids = cids[:25]
comments = get_comments(cids, v=v, sort="new")
comments = get_comments(cids, v=v)
else:
cids = v.notification_commentlisting(page=page, all_=all_)
next_exists = (len(cids) == 26)
cids = cids[:25]
comments = get_comments(cids, v=v, sort="new")
comments = get_comments(cids, v=v)
listing = []
for c in comments:

View File

@ -562,7 +562,7 @@ def saved_comments(v, username):
ids=ids[:25]
listing = get_comments(ids, v=v, sort="new")
listing = get_comments(ids, v=v)
return {'html': lambda: render_template("userpage_comments.html",