From b56a000a40f40d20ab04815934666538ead63bb0 Mon Sep 17 00:00:00 2001 From: murm Date: Sat, 18 Mar 2023 20:03:03 -0400 Subject: [PATCH] htmlescaping the cmd description is for losers --- commands/general/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/general/help.js b/commands/general/help.js index 1bbadfa..a4d257e 100644 --- a/commands/general/help.js +++ b/commands/general/help.js @@ -16,7 +16,7 @@ class HelpCommand extends Command { const info = collections.info.get(command); // TODO: room-specific prefix const prefix = htmlescape(process.env.PREFIX); - html = `

mrmBot Help

${prefix}${command}
${htmlescape(info.description)}` + html = `

mrmBot Help

${prefix}${command}
${info.description}` return { html: html } } if (help.categories[this.args[0].toLowerCase()]) {