From c5d94649ec8a548e6c2c8d229ec6e72926885232 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 29 Jul 2021 09:00:10 +0200 Subject: [PATCH] fddf --- drama/routes/front.py | 4 ++-- drama/routes/users.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drama/routes/front.py b/drama/routes/front.py index 926462505..129d04399 100644 --- a/drama/routes/front.py +++ b/drama/routes/front.py @@ -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: diff --git a/drama/routes/users.py b/drama/routes/users.py index e7e737274..8eaa924c3 100644 --- a/drama/routes/users.py +++ b/drama/routes/users.py @@ -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",