diff --git a/backend/src/graphql/resolver/TransactionLinkResolver.ts b/backend/src/graphql/resolver/TransactionLinkResolver.ts index 3d1bc85c5..14dac8342 100644 --- a/backend/src/graphql/resolver/TransactionLinkResolver.ts +++ b/backend/src/graphql/resolver/TransactionLinkResolver.ts @@ -572,7 +572,7 @@ export class TransactionLinkResolver { throw new LogError('Sender community UUID is not set') } // now with the sender community UUID the jwt token can be verified - const verifiedJwtPayload = await verify(code, senderCom.communityUuid) + const verifiedJwtPayload = await verify('handshakeID', code, senderCom.communityUuid) logger.debug( 'TransactionLinkResolver.queryRedeemJwtLink... nach verify verifiedJwtPayload=', verifiedJwtPayload,