This is an automated email from the ASF dual-hosted git repository.
mjumper pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-client.git
The following commit(s) were added to refs/heads/master by this push:
new 26cc9bc GUACAMOLE-678: Assign clientID variable instead of string
literal.
new 0bf1a7d GUACAMOLE-678: Merge correction to value of "client_id" query
parameter for OpenID.
26cc9bc is described below
commit 26cc9bc65bc3ea390ba7e81969ee89d1ddac7bcf
Author: Virtually Nick <[email protected]>
AuthorDate: Thu Apr 18 08:59:01 2019 -0400
GUACAMOLE-678: Assign clientID variable instead of string literal.
---
.../src/main/java/org/apache/guacamole/auth/openid/form/TokenField.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/openid/form/TokenField.java
b/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/openid/form/TokenField.java
index 4a3bc9d..b6ca18b 100644
---
a/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/openid/form/TokenField.java
+++
b/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/openid/form/TokenField.java
@@ -78,7 +78,7 @@ public class TokenField extends Field {
this.authorizationURI = UriBuilder.fromUri(authorizationEndpoint)
.queryParam("scope", scope)
.queryParam("response_type", "id_token")
- .queryParam("client_id","clientID")
+ .queryParam("client_id", clientID)
.queryParam("redirect_uri", redirectURI)
.queryParam("nonce", nonce)
.build();