diff options
author | James Booth <boothj5@gmail.com> | 2014-12-01 13:38:17 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-12-01 13:38:17 +0000 |
commit | 71ed9ac2d1b50b9063ecb10f183d94a51ccb8d20 (patch) | |
tree | d3c0b254fe9c8a4dca074c31d90380277be09960 /src/ui | |
parent | 84f441b9e1db83453d23e040b292b099045864d5 (diff) | |
download | profani-tty-71ed9ac2d1b50b9063ecb10f183d94a51ccb8d20.tar.gz |
Fixed /me messages in chat room history
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/core.c | 1 |
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); |