mirror of https://github.com/vector-im/riot-web
fix variable name shadowing
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
6ea9aebda3
commit
293bd15ee9
|
@ -993,7 +993,7 @@ export const Commands = [
|
|||
command: "msg",
|
||||
description: _td("Sends a message to the given user"),
|
||||
args: "<user-id> <message>",
|
||||
runFn: function(roomId, args) {
|
||||
runFn: function(_, args) {
|
||||
if (args) {
|
||||
const matches = args.match(/^(\S+?)(?: +(.*))?$/s);
|
||||
if (matches) {
|
||||
|
|
Loading…
Reference in New Issue