diff options
Diffstat (limited to 'services')
| -rw-r--r-- | services/Notifs.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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 => { |