fix: query parameter matching with equal
This commit is contained in:
parent
9cd54baca4
commit
d04903edb2
2 changed files with 9 additions and 1 deletions
|
@ -237,7 +237,7 @@ func headersRegexp(route *mux.Route, headers ...string) error {
|
|||
func query(route *mux.Route, query ...string) error {
|
||||
var queries []string
|
||||
for _, elem := range query {
|
||||
queries = append(queries, strings.Split(elem, "=")...)
|
||||
queries = append(queries, strings.SplitN(elem, "=", 2)...)
|
||||
}
|
||||
|
||||
route.Queries(queries...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue