From 51e54f0e47c285f2632691590cff3238ec28e081 Mon Sep 17 00:00:00 2001 From: Diego Sampaio Date: Fri, 28 Nov 2025 10:41:27 -0300 Subject: [PATCH] fix(federation): query profile using wrong param --- ee/packages/federation-matrix/src/FederationMatrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/packages/federation-matrix/src/FederationMatrix.ts b/ee/packages/federation-matrix/src/FederationMatrix.ts index b3fbb472d64df..7eee72b7a9ed5 100644 --- a/ee/packages/federation-matrix/src/FederationMatrix.ts +++ b/ee/packages/federation-matrix/src/FederationMatrix.ts @@ -882,7 +882,7 @@ export class FederationMatrix extends ServiceClass implements IFederationMatrixS errcode: string; error: string; } - >({ homeserverUrl, userId }); + >({ homeserverUrl, userId: matrixId }); if ('errcode' in result && result.errcode === 'M_NOT_FOUND') { return [matrixId, 'UNVERIFIED'];