From 2795cb748997d9aed11499f0244ac30f6f76902f Mon Sep 17 00:00:00 2001 From: Index Date: Thu, 25 Jul 2024 10:16:26 -0500 Subject: [PATCH] fix: update forum mentions to use new profile URLs --- js/forum/forum-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/forum/forum-view.js b/js/forum/forum-view.js index 0d281e0..bada3c1 100644 --- a/js/forum/forum-view.js +++ b/js/forum/forum-view.js @@ -24,7 +24,7 @@ function ForumMentions() { let match; while ((match = Regex.exec(text.innerText)) !== null) { const Username = match[0].substring(1); - FormattedText = FormattedText.replaceAll(match[0], `${match[0]}`); + FormattedText = FormattedText.replaceAll(match[0], `${match[0]}`); } text.innerHTML = FormattedText; }