Validate should ignore unexported struct fields.

This commit is contained in:
Andrey Smirnov 2014-10-07 01:52:18 +04:00
parent 0808f8a824
commit e36f2945bb
1 changed files with 2 additions and 2 deletions

View File

@ -169,8 +169,8 @@ func Validate(obj interface{}) error {
for i := 0; i < typ.NumField(); i++ {
field := typ.Field(i)
// Allow ignored fields in the struct
if field.Tag.Get("form") == "-" {
// Allow ignored and unexported fields in the struct
if field.Tag.Get("form") == "-" || field.PkgPath != "" {
continue
}