diff --git a/ctx.go b/ctx.go index 8a78643f..062f0ec3 100644 --- a/ctx.go +++ b/ctx.go @@ -1058,7 +1058,7 @@ func (c *Ctx) Query(key string, defaultValue ...string) string { func (c *Ctx) Queries() map[string]string { m := make(map[string]string, c.Context().QueryArgs().Len()) c.Context().QueryArgs().VisitAll(func(key, value []byte) { - m[string(key)] = string(value) + m[c.app.getString(key)] = c.app.getString(value) }) return m