1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Improvements for minimum age

This commit is contained in:
Mark McDowall
2014-12-15 16:31:26 -08:00
parent 580f03a5bc
commit bf169eb139
3 changed files with 12 additions and 3 deletions
@@ -10,7 +10,7 @@ namespace NzbDrone.Api.Config
: base(configService)
{
SharedValidator.RuleFor(c => c.MinimumAge)
.GreaterThan(0);
.GreaterThanOrEqualTo(0);
SharedValidator.RuleFor(c => c.Retention)
.GreaterThanOrEqualTo(0);