From dd2e1ad8a8800d875f0643fe80fd48f69a388949 Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 19 Aug 2013 13:27:16 +0100 Subject: Fix message for /account when account doesn't exist --- src/command/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command') diff --git a/src/command/command.c b/src/command/command.c index d8b955a2..4bd2812b 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1434,7 +1434,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) { -- cgit 1.4.1-2-gfad0 From ef511438b63ed7227558033250cb12dc3b84f98e Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 19 Aug 2013 14:32:10 +0100 Subject: Fixed /who in chat room highlighting console fixes #184 --- src/command/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command') diff --git a/src/command/command.c b/src/command/command.c index 4bd2812b..db5473f6 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -2097,7 +2097,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); } -- cgit 1.4.1-2-gfad0