unescape args before calling callback

This commit is contained in:
LenAnderson
2024-01-26 18:58:44 +00:00
parent 4d534e3042
commit 2cdf928fc7
2 changed files with 14 additions and 1 deletions

View File

@ -492,7 +492,7 @@ async function executeSubCommands(command) {
command = command.slice(0, -1);
}
const unescape = true;
const unescape = false;
const result = await executeSlashCommands(command, unescape);
if (!result || typeof result !== 'object') {