From 9ac3a1e0943b58171c70244829e0e02a434318b4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 5 Feb 2015 23:32:28 -0800 Subject: [PATCH] Set RSS Sync to minimum 10 minutes --- 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 83d76ba81..633c13bb0 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -67,7 +67,7 @@ namespace NzbDrone.Core.Jobs new ScheduledTask { - Interval = _configService.RssSyncInterval, + Interval = new [] { _configService.RssSyncInterval, 10 }.Max(), TypeName = typeof(RssSyncCommand).FullName },