diff --git a/drama/routes/front.py b/drama/routes/front.py index 9264625058..129d043999 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 e7e7372748..8eaa924c32 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",