Skip to content

Commit

Permalink
Merge pull request #633 from chamilaadhi/jwt-portal
Browse files Browse the repository at this point in the history
Fix publisher jwt issue
  • Loading branch information
chamilaadhi authored Mar 26, 2024
2 parents 97c6cb1 + 37d8a31 commit d9259ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portals/publisher/src/main/webapp/services/login/idp.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
dcrRequestData.put("grantType", "authorization_code refresh_token");
dcrRequestData.put("saasApp", true);
Object isJWTEnabledObj = Util.readJsonObj(settingsResponse, "IsJWTEnabledForLoginTokens");
Object isJWTEnabledObj = Util.readJsonObj(settingsResponse, "isJWTEnabledForLoginTokens");
if (isJWTEnabledObj != null && isJWTEnabledObj instanceof Boolean) {
boolean isJWTEnabledForLoginTokens = (boolean) isJWTEnabledObj;
if (isJWTEnabledForLoginTokens) {
Expand Down

0 comments on commit d9259ba

Please sign in to comment.