New: Store Task StartTime, Show Duration in UI

This commit is contained in:
Qstick
2019-12-15 00:34:45 -05:00
parent edcc0ba7ce
commit da50b49e01
12 changed files with 57 additions and 8 deletions

View File

@@ -39,7 +39,7 @@ namespace NzbDrone.Core.Jobs
foreach (var task in tasks)
{
_commandQueueManager.Push(task.TypeName, task.LastExecution, CommandPriority.Low, CommandTrigger.Scheduled);
_commandQueueManager.Push(task.TypeName, task.LastExecution, task.LastStartTime, CommandPriority.Low, CommandTrigger.Scheduled);
}
}