Presence events do not have event id. Do not discard them

pull/10/head
Emmanuel ROHEE 2014-09-10 13:48:33 +02:00
parent b63dd9506e
commit c2afc6cd0a
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ angular.module('eventHandlerService', [])
// AND from the event stream.
// FIXME: This workaround should be no more required when /initialSync on a particular room
// will be available (as opposite to the global /initialSync done at startup)
if (eventMap[event.event_id]) {
if (event.event_id && eventMap[event.event_id]) {
console.log("discarding duplicate event: " + JSON.stringify(event, undefined, 4));
return;
}
@ -258,7 +258,7 @@ angular.module('eventHandlerService', [])
// Handle messages from /initialSync or /messages
handleRoomMessages: function(room_id, messages, isLiveEvents) {
this.handleEvents(messages.chunk);
this.handleEvents(messages.chunk, isLiveEvents);
// Store how far back we've paginated
// This assumes the paginations requests are contiguous and in reverse chronological order