fix a bug which will lead []byte -> uuid.UUID fail

This commit is contained in:
Hunk Zhu
2026-05-17 10:03:18 +08:00
parent cae8ce3b51
commit e7232c92eb

View File

@ -275,7 +275,7 @@ func (c *Converter) doScanForComplicatedTypes(
ContinueOnError: option.ContinueOnError,
})
case reflect.Array, reflect.Slice:
case reflect.Slice:
var (
sliceElem = dstPointerReflectTypeElem.Elem()
sliceElemKind = sliceElem.Kind()