@@ -187,6 +187,8 @@ func convertAssign(d interface{}, s interface{}) (err error) {
switch d := d.(type) {
case *string:
*d = string(s)
+ case *interface{}:
+ *d = s
case nil:
// skip value
default: