diff --git a/forms.go b/forms.go index 8c0ea07..7a555c0 100644 --- a/forms.go +++ b/forms.go @@ -48,11 +48,7 @@ func decode(form Values, rv reflect.Value, prefix string) error { continue } - err := tu.UnmarshalText([]byte(v[0])) - if err != nil { - return err - } - + tu.UnmarshalText([]byte(v[0])) continue }