From e6d170f16fa792bccfb14033661e652c9cdbc371 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Mon, 21 Apr 2025 13:39:28 -0400 Subject: [PATCH] completely disable mention extraction until I gfigue out how to fix it --- utils/mentions.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/mentions.go b/utils/mentions.go index 3cdb337..c8d95d7 100644 --- a/utils/mentions.go +++ b/utils/mentions.go @@ -28,7 +28,9 @@ func ExtractUserMentions(text string) []string { } } - return result + // Ignore everything we found and return nothing + return []string{} + //return result } // NormalizeMentions replaces all @mentions in text with their normalized versions