We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 029e3a9 commit 1cf0d25Copy full SHA for 1cf0d25
ctx.go
@@ -287,7 +287,7 @@ func (ctx *Ctx) BodyParser(out interface{}) error {
287
if ctx.Fasthttp.QueryArgs().Len() > 0 {
288
data := make(map[string][]string)
289
ctx.Fasthttp.QueryArgs().VisitAll(func(key []byte, val []byte) {
290
- data[getString(key)] = []string{getString(val)}
+ data[getString(key)] = append(data[getString(key)], getString(val))
291
})
292
return schemaDecoderQuery.Decode(out, data)
293
}
0 commit comments