Allow /info and /msg in private room chat when nick has space in name

This commit is contained in:
James Booth
2013-01-15 00:02:23 +00:00
parent cbb3fd45e4
commit 62b89a4d8a
5 changed files with 58 additions and 27 deletions

View File

@@ -1584,7 +1584,11 @@ _cmd_info(gchar **args, struct cmd_help_t help)
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
} else {
cons_show_status(usr);
if (win_current_is_groupchat()) {
win_show_status(usr);
} else {
cons_show_status(usr);
}
}
return TRUE;