Modified regex to account for an immediate new line after slash commands

Signed-off-by: Jaiwanth <jaiwanth2011@gmail.com>
pull/21833/head
Jaiwanth 2021-02-15 17:46:32 +05:30
parent a87e637666
commit d73648dfb0
1 changed files with 1 additions and 1 deletions

View File

@ -1182,7 +1182,7 @@ export function parseCommandString(input: string) {
input = input.replace(/\s+$/, '');
if (input[0] !== '/') return {}; // not a command
const bits = input.match(/^(\S+?)(?: +((.|\n)*))?$/);
const bits = input.match(/^(\S+?)(?:[ \n]+((.|\n)*))?$/);
let cmd;
let args;
if (bits) {