summary refs log tree commit diff
path: root/webclient
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-09-01 15:53:07 +0100
committerDavid Baker <dbkr@matrix.org>2014-09-01 15:54:06 +0100
commitfa6b3490e299ebdb8c24e5858036bbfb67e76c6b (patch)
treed861d5f9830b4f3c1849a606784e2e0a1bfdbbff /webclient
parentJust show 'Call' for call events. Don't just splat out the content of the eve... (diff)
downloadsynapse-fa6b3490e299ebdb8c24e5858036bbfb67e76c6b.tar.xz
Handle call events in the recents view as well to get consistency with what it displays when refreshed.
Diffstat (limited to 'webclient')
-rw-r--r--webclient/recents/recents-controller.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/webclient/recents/recents-controller.js b/webclient/recents/recents-controller.js

index d33d41a922..c9fd022d7f 100644 --- a/webclient/recents/recents-controller.js +++ b/webclient/recents/recents-controller.js
@@ -43,6 +43,11 @@ angular.module('RecentsController', ['matrixService', 'eventHandlerService']) $scope.rooms[event.room_id].lastMsg = event; } }); + $scope.$on(eventHandlerService.CALL_EVENT, function(ngEvent, event, isLive) { + if (isLive) { + $scope.rooms[event.room_id].lastMsg = event; + } + }); };