From fc566413ddbe9d04183d2276bb4a40f315bf0503 Mon Sep 17 00:00:00 2001 From: VoxBorealis Date: Wed, 19 Jul 2023 14:48:30 +0300 Subject: [PATCH] forgot to add this back --- app/src/userCache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/userCache.js b/app/src/userCache.js index 1970487..58f24c7 100644 --- a/app/src/userCache.js +++ b/app/src/userCache.js @@ -36,7 +36,7 @@ const generatePlaintextString = (userId) => { const u = usercache[userId]; if (!u) { // fall back to a mention string if user is not found - return `<${userId}>`; + return `<@${userId}>`; } return `${u.user.profile.real_name || u.user.profile.display_name}`; };