0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-05 18:58:48 +02:00

Removed historical code: recents does not need to manage presences. It is already done by initialSync in eventStreamService

This commit is contained in:
Emmanuel ROHEE 2014-09-09 11:51:41 +02:00
parent 967ac65586
commit fd2d3fcfd7

View file

@ -112,12 +112,6 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand
$rootScope.rooms[room.room_id].numUsersInRoom = numUsersInRoom;
}
var presence = initialSyncData.data.presence;
for (var i = 0; i < presence.length; ++i) {
eventHandlerService.handleEvent(presence[i], false);
}
// From now, update recents from the stream
listenToEventStream();
},