mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-21 06:20:05 -06:00
Bug fix double-encoding for query parameter acr_values
Related bug fix in Keycloak version 26.4 space with mutiple values results in → "+" → "%2B" Reported bug: https://github.com/keycloak/keycloak/issues/44125 Signed-off-by: jhgojbis <gh_wipe@hotmail.com>
This commit is contained in:
@@ -561,7 +561,7 @@ public abstract class AbstractOAuth2IdentityProvider<C extends OAuth2IdentityPro
|
||||
}
|
||||
|
||||
if (parameter != null && !parameter.isEmpty()) {
|
||||
uriBuilder.queryParam(forwardParameter, URLEncoder.encode(parameter, StandardCharsets.UTF_8));
|
||||
uriBuilder.queryParam(forwardParameter, parameter);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user