Skip to content

Commit 75ba042

Browse files
committed
[ES-2175] Added null check
Signed-off-by: pvsaidurga <[email protected]>
1 parent c021e30 commit 75ba042

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mosip-identity-plugin/src/main/java/io/mosip/esignet/plugin/mosipid/service/IdaAuthenticatorImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,7 @@ private KycAuthResult doKycAuthentication(String relyingPartyId, String clientId
286286
);
287287
}
288288
return new KycAuthResult(responseWrapper.getResponse().getKycToken(),
289-
responseWrapper.getResponse().getAuthToken(),
290-
buildVerifiedClaimsMetadata(null) );
289+
responseWrapper.getResponse().getAuthToken());
291290
}
292291
assert Objects.requireNonNull(responseWrapper).getResponse() != null;
293292
log.error("Error response received from IDA KycStatus : {} && Errors: {}",

0 commit comments

Comments
 (0)