1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00

Fixed: Allow Unknown Language in Custom Format

Closes #5886
This commit is contained in:
Mark McDowall 2023-08-07 18:07:03 -07:00
parent 31fe942c96
commit 65323d5e87

View File

@ -10,7 +10,7 @@ namespace NzbDrone.Core.CustomFormats
{
public LanguageSpecificationValidator()
{
RuleFor(c => c.Value).NotEmpty();
RuleFor(c => c.Value).GreaterThanOrEqualTo(0);
RuleFor(c => c.Value).Custom((value, context) =>
{
if (!Language.All.Any(o => o.Id == value))