remove parsing of quoted values from unnamed arg

This commit is contained in:
LenAnderson
2024-04-30 09:13:15 -04:00
parent f63f4ef304
commit c7fa0baab4

View File

@ -778,13 +778,6 @@ export class SlashCommandParser {
value = '';
}
listValues.push(this.parseClosure());
} else if (this.testQuotedValue()) {
isList = true;
if (value.length > 0) {
listValues.push(value.trim());
value = '';
}
listValues.push(this.parseQuotedValue());
} else {
value += this.take();
}