Allow empty string field values

This commit is contained in:
Daniel Nelson
2018-03-30 16:57:35 -07:00
parent a971ffb880
commit 7e3ec16e15

View File

@@ -247,11 +247,7 @@ func convertField(v interface{}) interface{} {
case int64: case int64:
return v return v
case string: case string:
if v == "" { return v
return nil
} else {
return v
}
case bool: case bool:
return v return v
case int: case int: