mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Member event: store use the the latest one
This commit is contained in:
parent
da3f842b8c
commit
30bfa911fc
@ -129,8 +129,13 @@ angular.module('eventHandlerService', [])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Use data from state event or the latest data from the stream.
|
||||||
|
// Do not care of events that come when paginating back
|
||||||
|
if (isStateEvent || isLiveEvent) {
|
||||||
$rootScope.events.rooms[event.room_id].members[event.state_key] = event;
|
$rootScope.events.rooms[event.room_id].members[event.state_key] = event;
|
||||||
$rootScope.$broadcast(MEMBER_EVENT, event, isLiveEvent);
|
}
|
||||||
|
|
||||||
|
$rootScope.$broadcast(MEMBER_EVENT, event, isLiveEvent, isStateEvent);
|
||||||
};
|
};
|
||||||
|
|
||||||
var handlePresence = function(event, isLiveEvent) {
|
var handlePresence = function(event, isLiveEvent) {
|
||||||
|
Loading…
Reference in New Issue
Block a user