diff --git a/public/scripts/slash-commands/SlashCommandParser.js b/public/scripts/slash-commands/SlashCommandParser.js index 056676a28..8b619b769 100644 --- a/public/scripts/slash-commands/SlashCommandParser.js +++ b/public/scripts/slash-commands/SlashCommandParser.js @@ -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(); }