Browse Source

Fix to be able to send same key multiple times

master
harture 7 years ago
committed by GitHub
parent
commit
45101e8157
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      keycloak_client.go

2
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
}

Loading…
Cancel
Save