1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fixed /info command in rooms

This commit is contained in:
James Booth 2014-12-27 00:56:39 +00:00
parent 676ed1cbae
commit 3b95946083

View File

@ -1678,7 +1678,6 @@ cmd_info(gchar **args, struct cmd_help_t help)
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
PContact pcontact = NULL;
char *room = NULL;
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
@ -1693,7 +1692,7 @@ cmd_info(gchar **args, struct cmd_help_t help)
Occupant *occupant = muc_roster_item(mucwin->roomjid, usr);
if (occupant) {
ProfWin *current = wins_get_current();
win_show_occupant_info(current, room, occupant);
win_show_occupant_info(current, mucwin->roomjid, occupant);
} else {
ui_current_print_line("No such occupant \"%s\" in room.", usr);
}