fix (helper): fix isFieldMessage
This commit is contained in:
parent
7d8a132834
commit
49d31f1636
@ -75,10 +75,8 @@ func getMessageType(f *descriptor.FileDescriptorProto, name string) *descriptor.
|
|||||||
}
|
}
|
||||||
|
|
||||||
func isFieldMessage(f *descriptor.FieldDescriptorProto) bool {
|
func isFieldMessage(f *descriptor.FieldDescriptorProto) bool {
|
||||||
if f.Type != nil && *f.Type == descriptor.FieldDescriptorProto_TYPE_MESSAGE {
|
if f.Type != nil && *f.Type == descriptor.FieldDescriptorProto_TYPE_MESSAGE &&
|
||||||
return true
|
f.Label != nil && *f.Label != descriptor.FieldDescriptorProto_LABEL_REPEATED {
|
||||||
}
|
|
||||||
if f.TypeName != nil && (*f.TypeName)[0] == '.' {
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user