Allow 0 as value in download client Id validation

pull/1920/head
Bogdan 7 months ago
parent 203e2dbb10
commit 2c6c0fcc81

@ -16,7 +16,12 @@ namespace NzbDrone.Core.Validation
protected override bool IsValid(PropertyValidatorContext context)
{
return context?.PropertyValue == null || _downloadClientFactory.Exists((int)context.PropertyValue);
if (context?.PropertyValue == null || (int)context.PropertyValue == 0)
{
return true;
}
return _downloadClientFactory.Exists((int)context.PropertyValue);
}
}
}

Loading…
Cancel
Save