Merge pull request #441 from schumi2004/rss-sync

fix new rss-sync threshold
This commit is contained in:
Devin Buhl 2017-01-25 06:22:48 -05:00 committed by GitHub
commit 302462f48c
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ namespace NzbDrone.Api.Validation
public class RssSyncIntervalValidator : PropertyValidator public class RssSyncIntervalValidator : PropertyValidator
{ {
public RssSyncIntervalValidator() public RssSyncIntervalValidator()
: base("Must be between 10 and 120 or 0 to disable") : base("Must be between 10 and 720 or 0 to disable")
{ {
} }
@ -23,7 +23,7 @@ namespace NzbDrone.Api.Validation
return true; return true;
} }
if (value >= 10 && value <= 120) if (value >= 10 && value <= 720)
{ {
return true; return true;
} }