aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS.WinForms/Applications/Notifications.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Notifications.cs b/ShiftOS.WinForms/Applications/Notifications.cs
index 3ce3e58..9ed3587 100644
--- a/ShiftOS.WinForms/Applications/Notifications.cs
+++ b/ShiftOS.WinForms/Applications/Notifications.cs
@@ -32,7 +32,7 @@ namespace ShiftOS.WinForms.Applications
fllist.Controls.Clear();
bool showNoNotes = true;
- foreach (var note in NotificationDaemon.GetAllFromFile())
+ foreach (var note in new List<Notification>(NotificationDaemon.GetAllFromFile()).OrderByDescending(n => n.Timestamp))
{
if (note.Read == false)
{