diff --git a/src/MatrixEventHandler.ts b/src/MatrixEventHandler.ts index ffec5807..a4c093c0 100644 --- a/src/MatrixEventHandler.ts +++ b/src/MatrixEventHandler.ts @@ -254,7 +254,7 @@ export class MatrixEventHandler { const users = await this.bridge.getUserStore().getRemoteUsersFromMatrixId(event.sender); let body = "Linked accounts:\n"; body += users.map((remoteUser: RemoteUser) => { - const pid = remoteUser.get("protocolId"); + const pid = remoteUser.get("protocol_id"); const username = remoteUser.get("username"); let account: IBifrostAccount|null = null; try {