Show call invites in the message table

This commit is contained in:
David Baker 2014-09-09 11:45:36 +01:00
parent 75890d7bdd
commit 16b40cbede
2 changed files with 7 additions and 0 deletions

View file

@ -172,6 +172,9 @@ angular.module('eventHandlerService', [])
var handleCallEvent = function(event, isLiveEvent) {
$rootScope.$broadcast(CALL_EVENT, event, isLiveEvent);
if (event.type == 'm.call.invite') {
$rootScope.events.rooms[event.room_id].messages.push(event);
}
};
return {