From 4e14e38bd5cad77dfcab1fdfa3d3a19250810413 Mon Sep 17 00:00:00 2001
From: David Baker <dbkr@matrix.org>
Date: Mon, 1 Sep 2014 14:27:03 +0100
Subject: [PATCH] Just show 'Call' for call events. Don't just splat out the
 content of the event for other events: it's rarely going to be sesnible.

---
 webclient/recents/recents.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html
index 3f025a98d8..56fb38b02a 100644
--- a/webclient/recents/recents.html
+++ b/webclient/recents/recents.html
@@ -51,7 +51,9 @@
                         </div>
 
                         <div ng-switch-default>
-                            {{ room.lastMsg }}
+                            <div ng-if="room.lastMsg.type.indexOf('m.call.') == 0">
+                                Call
+                            </div>
                         </div>
                     </div>
                 </td>
-- 
GitLab