mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
remove parsing of quoted values from unnamed arg
This commit is contained in:
@ -778,13 +778,6 @@ export class SlashCommandParser {
|
|||||||
value = '';
|
value = '';
|
||||||
}
|
}
|
||||||
listValues.push(this.parseClosure());
|
listValues.push(this.parseClosure());
|
||||||
} else if (this.testQuotedValue()) {
|
|
||||||
isList = true;
|
|
||||||
if (value.length > 0) {
|
|
||||||
listValues.push(value.trim());
|
|
||||||
value = '';
|
|
||||||
}
|
|
||||||
listValues.push(this.parseQuotedValue());
|
|
||||||
} else {
|
} else {
|
||||||
value += this.take();
|
value += this.take();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user