Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/e5e86680c8f99687d3b95765be1c414cd1090191?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Backup interval is updated on change

Closes 
pull/4193/head
Mark McDowall 4 years ago
parent ca34f64eb0
commit e5e86680c8

@ -158,7 +158,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<ScheduledTask>{ rss, backup });
}
}
}

Loading…
Cancel
Save