mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
LastExecutionTime will only be updated if no targetId was found.
This commit is contained in:
parent
617b23f5e3
commit
c0b7ebef4b
@ -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 New Issue
Block a user