correct tag name

This commit is contained in:
Hyatt 2025-02-22 16:56:14 -06:00
parent 63b286a6ed
commit d2e07e98a5
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -130,7 +130,7 @@ func getAlt(ftype reflect.StructField) string {
func getDefault(ftype reflect.StructField) interface{} {
if ftype.Tag.Get("default") != "" {
v, err := typeConversion(ftype.Type.String(), ftype.Tag.Get("Default"))
v, err := typeConversion(ftype.Type.String(), ftype.Tag.Get("default"))
if err != nil {
return nil
}