From e7bc2b2221203e35c1c6ce4a1d24b1576a43977d Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Mon, 28 Jul 2025 22:17:42 -0400 Subject: [PATCH] Parse mentions from all user inputs --- src/core/mentions/processUserContentMentions.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/core/mentions/processUserContentMentions.ts b/src/core/mentions/processUserContentMentions.ts index 245a25b3793..b903e743961 100644 --- a/src/core/mentions/processUserContentMentions.ts +++ b/src/core/mentions/processUserContentMentions.ts @@ -39,7 +39,11 @@ export async function processUserContentMentions({ // should parse mentions). return Promise.all( userContent.map(async (block) => { - const shouldProcessMentions = (text: string) => text.includes("") || text.includes("") + const shouldProcessMentions = (text: string) => + text.includes("") || + text.includes("") || + text.includes("") || + text.includes("") if (block.type === "text") { if (shouldProcessMentions(block.text)) {