about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-12-01 13:38:17 +0000
committerJames Booth <boothj5@gmail.com>2014-12-01 13:38:17 +0000
commit71ed9ac2d1b50b9063ecb10f183d94a51ccb8d20 (patch)
treed3c0b254fe9c8a4dca074c31d90380277be09960 /src
parent84f441b9e1db83453d23e040b292b099045864d5 (diff)
downloadprofani-tty-71ed9ac2d1b50b9063ecb10f183d94a51ccb8d20.tar.gz
Fixed /me messages in chat room history
Diffstat (limited to 'src')
-rw-r--r--src/ui/core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 95275e64..e9ddc2a1 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1765,6 +1765,7 @@ _ui_room_history(const char * const room_jid, const char * const nick,
         if (strncmp(message, "/me ", 4) == 0) {
             g_string_append(line, "*");
             g_string_append(line, nick);
+            g_string_append(line, " ");
             g_string_append(line, message + 4);
         } else {
             g_string_append(line, nick);