From 9391be0f5d2c04c13467de6c7ae81c4d6cc4c0a5 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Thu, 14 Aug 2014 03:35:09 +0100 Subject: [PATCH] fix emote presentation --- webclient/room/room.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webclient/room/room.html b/webclient/room/room.html index 51af54e7b..8fc7d5d36 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -33,7 +33,7 @@
- {{ msg.content.msgtype === "m.emote" ? ("* " + (members[msg.user_id].displayname || msg.user_id) + " ") : "" }} + {{ msg.content.msgtype === "m.emote" ? ("* " + (members[msg.user_id].displayname || msg.user_id) + " " + msg.content.body) : "" }} {{ msg.content.msgtype === "m.text" ? msg.content.body : "" }} {{ msg.content.body }}