mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
Fixed: Allow Min/Max age to be the same for year auto tagging
This commit is contained in:
@@ -12,7 +12,7 @@ namespace NzbDrone.Core.AutoTagging.Specifications
|
||||
RuleFor(c => c.Min).NotEmpty();
|
||||
RuleFor(c => c.Min).GreaterThan(0);
|
||||
RuleFor(c => c.Max).NotEmpty();
|
||||
RuleFor(c => c.Max).GreaterThan(c => c.Min);
|
||||
RuleFor(c => c.Max).GreaterThanOrEqualTo(c => c.Min);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user