mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-26 07:01:40 +02:00
Fixed: Backups interval being used as minutes instead of days
This commit is contained in:
parent
ae45089c62
commit
ed2bb0d73a
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ public void HandleAsync(ConfigSavedEvent message)
|
|||
rss.Interval = _configService.RssSyncInterval;
|
||||
|
||||
var backup = _scheduledTaskRepository.GetDefinition(typeof(BackupCommand));
|
||||
backup.Interval = _configService.BackupInterval;
|
||||
backup.Interval = _configService.BackupInterval * 60 * 24;
|
||||
|
||||
_scheduledTaskRepository.UpdateMany(new List<ScheduledTask>{ rss, backup });
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue