handling of blank paths during validation.

This commit is contained in:
kay.one 2013-08-31 13:46:59 -07:00
parent 9e08dffa58
commit daabc6364d
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@ namespace NzbDrone.Api.Validation
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null) return false;
return context.PropertyValue.ToString().IsPathValid();
}
}