Archived
1
0

History (local)

This commit is contained in:
Michael Gordeev
2018-11-09 22:27:51 +03:00
parent 4d13ea1226
commit 1a6447a4aa
9 changed files with 100 additions and 56 deletions
+2 -2
View File
@@ -52,8 +52,8 @@ namespace FoxTube.Pages.SettingsPages
items.Add(new InboxItem(
e["header"].InnerText,
e["content"].InnerText,
DateTime.Parse(e.GetAttribute("time")),
e.GetAttribute("id")
DateTime.Parse(e["time"].InnerText),
e["id"].InnerText
));
items.OrderBy(item => item.TimeStamp);