From 7f708b5f3cf982e9fbdc22092ce30725351474f5 Mon Sep 17 00:00:00 2001 From: Michael Avoyan Date: Mon, 5 Feb 2024 21:34:15 +0200 Subject: [PATCH] fix --- .../impl/data/usecases/PresentationRequestUseCaseImpl.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VCL/src/main/java/io/velocitycareerlabs/impl/data/usecases/PresentationRequestUseCaseImpl.kt b/VCL/src/main/java/io/velocitycareerlabs/impl/data/usecases/PresentationRequestUseCaseImpl.kt index 151f864..3214f89 100644 --- a/VCL/src/main/java/io/velocitycareerlabs/impl/data/usecases/PresentationRequestUseCaseImpl.kt +++ b/VCL/src/main/java/io/velocitycareerlabs/impl/data/usecases/PresentationRequestUseCaseImpl.kt @@ -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")