about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-05-20 20:37:17 +0100
committerJames Booth <boothj5@gmail.com>2013-05-20 20:37:17 +0100
commit72b80974652097c12ad948e836313322a5fa18e2 (patch)
tree7b1ea691a203125be7f67e5016f42113db07b8cf /src
parentf8121cc546fd95e2e6348cd0fa77e748939d90cf (diff)
downloadprofani-tty-72b80974652097c12ad948e836313322a5fa18e2.tar.gz
Pass jid when creating new window for /msg with no message
Diffstat (limited to 'src')
-rw-r--r--src/command/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 7d65b466..879a6290 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -1987,7 +1987,7 @@ _cmd_msg(gchar **args, struct cmd_help_t help)
 
             return TRUE;
         } else {
-            ui_new_chat_win(usr);
+            ui_new_chat_win(usr_jid);
             return TRUE;
         }
     }