diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index e2ed6f7d7..1fd79d70e 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -156,7 +156,10 @@ namespace NzbDrone.Core.Jobs var rss = _scheduledTaskRepository.GetDefinition(typeof(RssSyncCommand)); rss.Interval = _configService.RssSyncInterval; - _scheduledTaskRepository.Update(rss); + var backup = _scheduledTaskRepository.GetDefinition(typeof(BackupCommand)); + backup.Interval = _configService.BackupInterval; + + _scheduledTaskRepository.UpdateMany(new List{ rss, backup }); } } }