diff --git a/moderation.js b/moderation.js index d3aea797..c0f6f18e 100644 --- a/moderation.js +++ b/moderation.js @@ -86,7 +86,7 @@ module.exports = { if (module.exports.bannedIps.includes(ip)) module.exports.bannedIps = module.exports.bannedIps.filter((b) => b != ip); - res.send("unbanned "+ip.replace("<", "<").replace(">", "$gt;")); + res.send("unbanned "+ip.replaceAll("<", "<").replaceAll(">", "$gt;")); } else { res.send("idot"); }