Fixed: Backups interval being used as minutes instead of days

This commit is contained in:
Qstick 2021-01-05 20:57:56 -05:00
parent 9370e496dd
commit 00e1568e70

View file

@ -157,7 +157,7 @@ namespace NzbDrone.Core.Jobs
rss.Interval = _configService.RssSyncInterval; rss.Interval = _configService.RssSyncInterval;
var backup = _scheduledTaskRepository.GetDefinition(typeof(BackupCommand)); var backup = _scheduledTaskRepository.GetDefinition(typeof(BackupCommand));
backup.Interval = _configService.BackupInterval; backup.Interval = GetBackupInterval();
_scheduledTaskRepository.UpdateMany(new List<ScheduledTask> { rss, backup }); _scheduledTaskRepository.UpdateMany(new List<ScheduledTask> { rss, backup });
} }