mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fixed: Allow Original Language in Custom Format
(cherry picked from commit 6103c023de0d5b28d96931663ef2185dbd4c5491)
This commit is contained in:
@@ -10,7 +10,6 @@ namespace NzbDrone.Core.CustomFormats
|
|||||||
{
|
{
|
||||||
public LanguageSpecificationValidator()
|
public LanguageSpecificationValidator()
|
||||||
{
|
{
|
||||||
RuleFor(c => c.Value).GreaterThanOrEqualTo(0);
|
|
||||||
RuleFor(c => c.Value).Custom((value, context) =>
|
RuleFor(c => c.Value).Custom((value, context) =>
|
||||||
{
|
{
|
||||||
if (!Language.All.Any(o => o.Id == value))
|
if (!Language.All.Any(o => o.Id == value))
|
||||||
|
|||||||
Reference in New Issue
Block a user