1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00

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

View File

@ -67,7 +67,7 @@ public void Handle(ApplicationStartedEvent message)
new ScheduledTask
{
Interval = _configService.RssSyncInterval,
Interval = new [] { _configService.RssSyncInterval, 10 }.Max(),
TypeName = typeof(RssSyncCommand).FullName
},