1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

#292 - Allow longer threshold for RSS Sync (#428)

* #292 - Allow longer threshold for RSS Sync

Update RSS Sync interval default to 60 minutes, and don't allow values below 60 or higher than 720 minutes (12 hours)

* allow minimum of 10 mintes
This commit is contained in:
Devin Buhl
2017-01-24 15:26:51 -05:00
committed by Leonardo Galli
parent a0c8127ecf
commit 2c56d60678
3 changed files with 4 additions and 4 deletions
@@ -100,7 +100,7 @@ namespace NzbDrone.Core.Configuration
public int RssSyncInterval
{
get { return GetValueInt("RssSyncInterval", 15); }
get { return GetValueInt("RssSyncInterval", 60); }
set { SetValue("RssSyncInterval", value); }
}