Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Feb 5, 2024
1 parent 5e5635d commit 7f708b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,12 @@ internal class PresentationRequestUseCaseImpl(
jwtServiceRepository.verifyJwt(
presentationRequest.jwt,
presentationRequest.publicJwk,
presentationRequest.remoteCryptoServicesToken
) { jwtVerificationRes ->
jwtVerificationRes.handleResult({
presentationRequestByDeepLinkVerifier.verifyPresentationRequest(
presentationRequest,
presentationRequestDescriptor.deepLink
presentationRequest.deepLink
) { byDeepLinkVerificationRes ->
byDeepLinkVerificationRes.handleResult({ isVerified ->
VCLLog.d(TAG, "Presentation request by deep link verification result: $isVerified")
Expand Down

0 comments on commit 7f708b5

Please sign in to comment.