Set RSS Sync to minimum 10 minutes

This commit is contained in:
Mark McDowall 2015-02-05 23:32:28 -08:00
parent d5cc261985
commit 9ac3a1e094
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace NzbDrone.Core.Jobs
new ScheduledTask
{
Interval = _configService.RssSyncInterval,
Interval = new [] { _configService.RssSyncInterval, 10 }.Max(),
TypeName = typeof(RssSyncCommand).FullName
},