diff options
-rw-r--r-- | src/command/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/command.c b/src/command/command.c index 1017b899..1032be29 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1463,7 +1463,7 @@ _cmd_account(gchar **args, struct cmd_help_t help) char *value = args[3]; if (!accounts_account_exists(account_name)) { - cons_show("Account %s doesn't exist"); + cons_show("Account %s doesn't exist", account_name); cons_show(""); } else { if (strcmp(property, "jid") == 0) { @@ -2128,7 +2128,7 @@ _cmd_who(gchar **args, struct cmd_help_t help) } } - if (win_type != WIN_CONSOLE) { + if (win_type != WIN_CONSOLE && win_type != WIN_MUC) { status_bar_new(0); } |