about summary refs log tree commit diff stats
path: root/src/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/command.c b/src/command.c
index 4e79b00d..229d0145 100644
--- a/src/command.c
+++ b/src/command.c
@@ -1518,6 +1518,7 @@ _cmd_who(gchar **args, struct cmd_help_t help)
 
             // not in groupchat window
             } else {
+                cons_show("");
                 GSList *list = get_contact_list();
 
                 // no arg, show all contacts
@@ -1673,7 +1674,7 @@ _cmd_info(gchar **args, struct cmd_help_t help)
     } else {
         if (win_current_is_groupchat()) {
             if (usr != NULL) {
-                win_room_show_status(usr);
+                win_room_show_info(usr);
             } else {
                 win_current_show("You must specify a nickname.");
             }
@@ -1681,17 +1682,17 @@ _cmd_info(gchar **args, struct cmd_help_t help)
             if (usr != NULL) {
                 win_current_show("No parameter required when in chat.");
             } else {
-                win_show_status();
+                win_show_info();
             }
         } else if (win_current_is_private()) {
             if (usr != NULL) {
                 win_current_show("No parameter required when in chat.");
             } else {
-                win_private_show_status();
+                win_private_show_info();
             }
         } else {
             if (usr != NULL) {
-                cons_show_status(usr);
+                cons_show_info(usr);
             } else {
                 cons_show("Usage: %s", help.usage);
             }