Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/MatrixEventHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ export class MatrixEventHandler {
formatted_body: marked.parse(body),
});
} else if (args[0] === "accounts" && args.length === 1) {
const users = await this.store.getRemoteUsersFromMxId(event.sender) || [];
const users = await this.store.getAllAccountsForMatrixUser(event.sender) || [];
let body = "Linked accounts:\n";
body += users.map((remoteUser: BifrostRemoteUser) => {
let account: IBifrostAccount|null = null;
Expand Down