mirror of https://github.com/vector-im/riot-web
Merge pull request #5015 from matrix-org/t3chguy/fix/14595
Fix slash commands null guardpull/21833/head
commit
dba54115ac
|
@ -1049,7 +1049,7 @@ export function parseCommandString(input) {
|
|||
// trim any trailing whitespace, as it can confuse the parser for
|
||||
// IRC-style commands
|
||||
input = input.replace(/\s+$/, '');
|
||||
if (input[0] !== '/') return null; // not a command
|
||||
if (input[0] !== '/') return {}; // not a command
|
||||
|
||||
const bits = input.match(/^(\S+?)(?: +((.|\n)*))?$/);
|
||||
let cmd;
|
||||
|
|
Loading…
Reference in New Issue