diff --git a/SparkleLib/SparkleChangeSet.cs b/SparkleLib/SparkleChangeSet.cs index 7de6c87c..7f368238 100644 --- a/SparkleLib/SparkleChangeSet.cs +++ b/SparkleLib/SparkleChangeSet.cs @@ -25,7 +25,7 @@ namespace SparkleLib { public string UserName; public string UserEmail; public string Hash; - public DateTime DateTime; + public DateTime Timestamp; public bool IsMerge = false; public List Added = new List (); public List Deleted = new List (); diff --git a/SparkleLib/SparkleRepo.cs b/SparkleLib/SparkleRepo.cs index eda5656b..464f2ad2 100644 --- a/SparkleLib/SparkleRepo.cs +++ b/SparkleLib/SparkleRepo.cs @@ -924,7 +924,7 @@ namespace SparkleLib { change_set.UserEmail = match.Groups [3].Value; change_set.IsMerge = is_merge_commit; - change_set.DateTime = new DateTime (int.Parse (match.Groups [4].Value), + change_set.Timestamp = new DateTime (int.Parse (match.Groups [4].Value), int.Parse (match.Groups [5].Value), int.Parse (match.Groups [6].Value), int.Parse (match.Groups [7].Value), int.Parse (match.Groups [8].Value), int.Parse (match.Groups [9].Value));