diff --git a/app.js b/app.js index 6779a81..24d9186 100644 --- a/app.js +++ b/app.js @@ -71,7 +71,7 @@ const sanitizeJsonOutput = (data) => { const jsonString = JSON.stringify(data); // Define regex pattern that matches HTML entities - const regexPattern = /<span class=".*?">|<\/span>|">|mp-stat-items|kills-value|headshots-value|username|game-mode|kdr-value|accuracy-value|defends-value/g; + const regexPattern = /<span class=".*?">|<\/span>|">/g; // Replace unwanted patterns const sanitizedString = jsonString.replace(regexPattern, '');