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; }