Skip to content

Commit 724924b

Browse files
Merge remote-tracking branch 'upstream/master' into fix-session-data-removal
2 parents dde72a6 + 92a71c7 commit 724924b

File tree

4 files changed

+4
-4
lines changed
  • components/org.wso2.carbon.identity.application.authenticator.oidc
  • features/org.wso2.carbon.identity.application.authenticator.oidc.server.feature

4 files changed

+4
-4
lines changed

components/org.wso2.carbon.identity.application.authenticator.oidc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<groupId>org.wso2.carbon.identity.outbound.auth.oidc</groupId>
2121
<artifactId>identity-application-auth-oidc</artifactId>
2222
<relativePath>../../pom.xml</relativePath>
23-
<version>5.12.18-SNAPSHOT</version>
23+
<version>5.12.19-SNAPSHOT</version>
2424
</parent>
2525

2626
<modelVersion>4.0.0</modelVersion>

components/org.wso2.carbon.identity.application.authenticator.oidc/src/main/java/org/wso2/carbon/identity/application/authenticator/oidc/OpenIDConnectAuthenticator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2086,7 +2086,7 @@ private String getParameterFromURIString(String uriString, String parameterName)
20862086
for (String queryParam: queryParams) {
20872087
String[] queryParamComponents = queryParam.split(QUERY_PARAM_KEY_VALUE_DELIMITER);
20882088
if (queryParamComponents.length == 2 && queryParamComponents[0].equalsIgnoreCase(parameterName)) {
2089-
return queryParamComponents[1];
2089+
return URLDecoder.decode(queryParamComponents[1], StandardCharsets.UTF_8);
20902090
}
20912091
}
20922092
}

features/org.wso2.carbon.identity.application.authenticator.oidc.server.feature/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>org.wso2.carbon.identity.outbound.auth.oidc</groupId>
2323
<artifactId>identity-application-auth-oidc</artifactId>
2424
<relativePath>../../pom.xml</relativePath>
25-
<version>5.12.18-SNAPSHOT</version>
25+
<version>5.12.19-SNAPSHOT</version>
2626
</parent>
2727

2828
<modelVersion>4.0.0</modelVersion>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<groupId>org.wso2.carbon.identity.outbound.auth.oidc</groupId>
2828
<modelVersion>4.0.0</modelVersion>
2929
<artifactId>identity-application-auth-oidc</artifactId>
30-
<version>5.12.18-SNAPSHOT</version>
30+
<version>5.12.19-SNAPSHOT</version>
3131
<packaging>pom</packaging>
3232
<name>WSO2 Carbon - OpenID Connect Application Authenticator Feature Aggregator Module</name>
3333
<description>

0 commit comments

Comments
 (0)