Browse Source
Fix to be able to send same key multiple times
master
harture
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
keycloak_client.go
|
|
|
@ -377,7 +377,7 @@ func createQueryPlugins(paramKV ...string) []plugin.Plugin { |
|
|
|
for i := 0; i < len(paramKV); i += 2 { |
|
|
|
var k = paramKV[i] |
|
|
|
var v = paramKV[i+1] |
|
|
|
plugins = append(plugins, query.Set(k, v)) |
|
|
|
plugins = append(plugins, query.Add(k, v)) |
|
|
|
} |
|
|
|
return plugins |
|
|
|
} |
|
|
|
|