From ef3bcc290a996d3fe8c20c11fee38285e0706789 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 20 Sep 2025 16:22:57 +1000 Subject: notifs: fix persistence sorting order --- services/Notifs.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services') diff --git a/services/Notifs.qml b/services/Notifs.qml index 7136959..645e1ed 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -82,7 +82,7 @@ Singleton { const data = JSON.parse(text()); for (const notif of data) root.list.push(notifComp.createObject(root, notif)); - root.list.sort((a, b) => a.time - b.time); + root.list.sort((a, b) => b.time - a.time); root.loaded = true; } onLoadFailed: err => { -- cgit v1.2.3-freya