mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-22 14:00:42 +00:00
Merge branch 'markus101'
This commit is contained in:
commit
356650a1d3
1 changed files with 5 additions and 2 deletions
|
@ -241,8 +241,11 @@ private void Execute(Type jobType, int targetId = 0)
|
|||
_notificationProvider.Register(_notification);
|
||||
jobImplementation.Start(_notification, targetId);
|
||||
_notification.Status = ProgressNotificationStatus.Completed;
|
||||
settings.LastExecution = DateTime.Now;//TODO: Should only be updated if targetId is 0.
|
||||
settings.Success = true;
|
||||
|
||||
if (targetId != 0)
|
||||
settings.LastExecution = DateTime.Now;
|
||||
|
||||
settings.Success = true; //TODO: Do we consider a job with a targetId as successful?
|
||||
sw.Stop();
|
||||
Logger.Debug("Job '{0}' successfully completed in {1} seconds", jobImplementation.Name, sw.Elapsed.Minutes,
|
||||
sw.Elapsed.Seconds);
|
||||
|
|
Loading…
Reference in a new issue