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.

This commit is contained in:
David Baker 2014-09-01 14:27:03 +01:00
parent 468d94c920
commit 4e14e38bd5

View file

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