#2254 Don't suppress abort in subcommands

This commit is contained in:
Cohee 2024-05-17 18:21:13 +03:00
parent deb09bf5bf
commit fb2190ace1

View File

@ -518,7 +518,7 @@ async function executeSubCommands(command, scope = null, parserFlags = null) {
command = command.slice(1, -1); command = command.slice(1, -1);
} }
const result = await executeSlashCommands(command, true, scope, true, parserFlags); const result = await executeSlashCommands(command, true, scope, false, parserFlags);
if (!result || typeof result !== 'object') { if (!result || typeof result !== 'object') {
return ''; return '';