Fixed /me messages in chat room history

This commit is contained in:
James Booth
2014-12-01 13:38:17 +00:00
parent 84f441b9e1
commit 71ed9ac2d1

View File

@@ -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);