From ed2bb0d73aaade95d21041bac845470870f99b36 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 4 Jan 2021 08:21:57 -0800 Subject: [PATCH] Fixed: Backups interval being used as minutes instead of days --- src/NzbDrone.Core/Jobs/TaskManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index deca36857..5ac2bed2f 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -159,7 +159,7 @@ namespace NzbDrone.Core.Jobs rss.Interval = _configService.RssSyncInterval; var backup = _scheduledTaskRepository.GetDefinition(typeof(BackupCommand)); - backup.Interval = _configService.BackupInterval; + backup.Interval = _configService.BackupInterval * 60 * 24; _scheduledTaskRepository.UpdateMany(new List{ rss, backup }); }