Skip to content

Release 2.2.1

Choose a tag to compare

@deankarn deankarn released this 13 Feb 01:55
· 45 commits to master since this release

What was fixed?

  • Added additional notes to RegisterCustomTypeFunc to indicate that if a struct type is registered a url.Value must exist explicitly for the struct and not just the fields.

eg. url.Values{"User":"Name%3Djoeybloggs"} will call the custom type function with User as the type, however url.Values{"User.Name":"joeybloggs"} will not.

Fixes #14