allow larger trakt lists than 500

geogolem 8 years ago
parent 77f369caab
commit 7c5c4e7594

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

Loading…
Cancel
Save