Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2013-10-30 15:50:27 +0400
committerKenneth Skovhede <kenneth@hexad.dk>2013-10-30 15:50:27 +0400
commit75c8f00756e18b5ce85558943c4a9f1d1624bffc (patch)
treece5421bae9562f783696f296e3dd9cf60372d245
parent678c63fc32b79677e3302b6364fdb7a21e00d88a (diff)
Update issue #8761.3.4-dev05
Status: Fixed Changed display to use start-time instead of endtime
-rw-r--r--Duplicati/GUI/ServiceStatus.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/GUI/ServiceStatus.cs b/Duplicati/GUI/ServiceStatus.cs
index 4b8aefd7b..6ea1db428 100644
--- a/Duplicati/GUI/ServiceStatus.cs
+++ b/Duplicati/GUI/ServiceStatus.cs
@@ -353,7 +353,7 @@ namespace Duplicati.GUI
recentBackups.Items.Clear();
foreach (Log l in logs)
{
- ListViewItem lvi = new ListViewItem(new string[] { l.EndTime.ToString("g"), l.OwnerTask == null || l.OwnerTask.Schedule == null ? "" : l.OwnerTask.Schedule.Name, l.Transfersize > 0 ? l.TransferSizeString : "" });
+ ListViewItem lvi = new ListViewItem(new string[] { l.BeginTime.ToString("g"), l.OwnerTask == null || l.OwnerTask.Schedule == null ? "" : l.OwnerTask.Schedule.Name, l.Transfersize > 0 ? l.TransferSizeString : "" });
lvi.Tag = l;
lvi.ImageIndex = imageList.Images.ContainsKey(l.ParsedStatus) ? imageList.Images.IndexOfKey(l.ParsedStatus) : imageList.Images.IndexOfKey("Warning");