allow larger trakt lists than 500

This commit is contained in:
geogolem 2017-03-09 09:16:00 -05:00
parent 77f369caab
commit 7c5c4e7594
1 changed files with 3 additions and 2 deletions

View File

@ -46,8 +46,9 @@ namespace NzbDrone.Core.NetImport.Trakt
// Limit not smaller than 1 and not larger than 100
RuleFor(c => c.Limit)
.InclusiveBetween(1, 500)
.WithMessage("Must be 1 thru 500");
.GreaterThan(0)
// .InclusiveBetween(1, 500)
.WithMessage("Must be integer greater than 0");
}
}