From 3a3e16b8cef178fe6d77ffb8205fb7b0b1530137 Mon Sep 17 00:00:00 2001 From: Kyuho Jo Date: Wed, 10 May 2017 16:22:14 +0900 Subject: [PATCH] Fixed a bug on sorting recent contents Signed-off-by: Kyuho Jo Change-Id: I736ccc9e9f811d7ad60a53840e4eb3074badbba9 --- LibTVRefCommonPortable/Models/RecentShortcutController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibTVRefCommonPortable/Models/RecentShortcutController.cs b/LibTVRefCommonPortable/Models/RecentShortcutController.cs index 6845251..5cd8496 100755 --- a/LibTVRefCommonPortable/Models/RecentShortcutController.cs +++ b/LibTVRefCommonPortable/Models/RecentShortcutController.cs @@ -133,6 +133,7 @@ namespace LibTVRefCommonPortable.Models recentShortcutInfo.StateDescriptions.Add("default", defaultStateDescription); recentShortcutInfo.CurrentStateDescription = defaultStateDescription; recentShortcutInfo.Id = item.AppID; + recentShortcutInfo.Date = item.LaunchedTime; recentShortcutInfoList.Add(recentShortcutInfo); } } @@ -201,6 +202,7 @@ namespace LibTVRefCommonPortable.Models recentShortcutInfo.StateDescriptions.Add("default", defaultStateDescription); recentShortcutInfo.CurrentStateDescription = defaultStateDescription; recentShortcutInfo.Id = "org.tizen.xamediahub"; + recentShortcutInfo.Date = item.PlayedAt; recentShortcutInfoList.Add(recentShortcutInfo); } -- 2.34.1