diff --git a/services/Notifs.qml b/services/Notifs.qml index 7136959e..645e1ed7 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 => {