diff options
Diffstat (limited to 'src/plugins/irc/irc-command.c')
-rw-r--r-- | src/plugins/irc/irc-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 5f907ced2..9500f7beb 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -121,7 +121,7 @@ irc_command_exec_all_channels (struct t_irc_server *server, if (!command || !command[0]) return; - if (command[0] != '/') + if (!weechat_string_is_command_char (command)) { length = 1 + strlen (command) + 1; str_command = malloc (length); @@ -240,7 +240,7 @@ irc_command_exec_all_servers (const char *exclude_servers, const char *command) if (!command || !command[0]) return; - if (command[0] != '/') + if (!weechat_string_is_command_char (command)) { length = 1 + strlen (command) + 1; str_command = malloc (length); |