fix mention

This commit is contained in:
Evert Prants 2021-01-19 18:42:06 +02:00
parent 78c733398f
commit 43c1edb907
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class MatrixMessageAdapter implements IMessage {
}
public mention(user: IMessageTarget): string {
return `${user.id}:`;
return `<a href="https://matrix.to/#/${user.id}">${user.id}</a>`;
}
}