From 43c1edb907638f8ca1b9a582388f6c657594cf8b Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Tue, 19 Jan 2021 18:42:06 +0200 Subject: [PATCH] fix mention --- matrix/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/plugin.ts b/matrix/plugin.ts index ffae2f5..09bbb8c 100644 --- a/matrix/plugin.ts +++ b/matrix/plugin.ts @@ -65,7 +65,7 @@ class MatrixMessageAdapter implements IMessage { } public mention(user: IMessageTarget): string { - return `${user.id}:`; + return `${user.id}`; } }