From 7c168a09280a8050ef2637051aed81150574d278 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 12 Mar 2021 18:18:24 +0000 Subject: [PATCH] Descending order --- notifications_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications_client.py b/notifications_client.py index 3e2114525..a6688c304 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -294,7 +294,7 @@ def _showLocalBox(boxName: str, startPostIndex=0, noOfPosts=10) -> None: index.append(f) break maxPostIndex = len(index) - index.sort() + index.sort(reverse=True) for pos in range(startPostIndex, startPostIndex + noOfPosts): if pos >= maxPostIndex: break