From f58b7fab1efdb5c29f5c6a79f1a301e97c5f0af7 Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Wed, 9 Jul 2025 22:57:42 +0200 Subject: [PATCH] add handshakeID to openConnection invokation --- backend/src/federation/authenticateCommunities.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/federation/authenticateCommunities.ts b/backend/src/federation/authenticateCommunities.ts index 15e9ab735..5fd741e7f 100644 --- a/backend/src/federation/authenticateCommunities.ts +++ b/backend/src/federation/authenticateCommunities.ts @@ -57,6 +57,7 @@ export async function startCommunityAuthentication( const args = new EncryptedTransferArgs() args.publicKey = homeComA!.publicKey.toString('hex') args.jwt = jws + args.handshakeID = handshakeID logger.debug('before client.openConnection() args:', args) if (await client.openConnection(args)) { logger.debug(`successful initiated at community:`, fedComB.endPoint)