Skip to content

Commit

Permalink
[INJIWEB-383] change credential supported type fetching to well known…
Browse files Browse the repository at this point in the history
… property from credential issuer (#196)

Signed-off-by: Challa Rao <[email protected]>
  • Loading branch information
challabeehyv committed Apr 19, 2024
1 parent 385f30b commit b1b650b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public IssuerSupportedCredentialsResponse getCredentialsSupported(String issuerI
IssuerDTO issuerDto = issuerConfigResp.get();

// Get credential supported types from well known endpoint
CredentialIssuerWellKnownResponse response = restApiClient.getApi(issuerDto.getCredential_issuer(), CredentialIssuerWellKnownResponse.class);
CredentialIssuerWellKnownResponse response = restApiClient.getApi(issuerDto.getWellKnownEndpoint(), CredentialIssuerWellKnownResponse.class);
if (response == null) {
response = getCredentialWellKnownFromJson();
}
Expand Down

0 comments on commit b1b650b

Please sign in to comment.