Skip to content

Commit

Permalink
fix(jans-auth-server): npe during client registration #5559
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Jul 17, 2023
1 parent d70cf8f commit d5de13a
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -225,6 +225,9 @@ private JSONObject getJwks(HttpServletRequest httpRequest, Jwt jwt, String jwksU

public JSONObject validateSoftwareStatement(HttpServletRequest httpServletRequest, JSONObject requestObject) {
final JSONObject jsonObject = validateSSA(httpServletRequest, requestObject);
if (jsonObject == null) {
return null;
}
TrustedIssuerConfig trustedIssuerConfig = validateIssuer(jsonObject);
applyTrustedIssuerConfig(trustedIssuerConfig, jsonObject);
return jsonObject;
Expand Down

0 comments on commit d5de13a

Please sign in to comment.