summary refs log tree commit diff
path: root/webclient/components
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2014-09-03 18:21:55 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2014-09-03 18:21:55 +0100
commit01e83c96803e1798d487f30760d01db08dd34ccf (patch)
treeae347aa851e93355433792daa2d62f33af9bc850 /webclient/components
parentMerge branch 'develop' into paul/schema_breaking_changes (diff)
parentAdd support to _simple_insert() to do INSERT OR REPLACE (diff)
downloadsynapse-github/paul/schema_breaking_changes.tar.xz
Merge branch 'develop' into paul/schema_breaking_changes github/paul/schema_breaking_changes paul/schema_breaking_changes
Diffstat (limited to 'webclient/components')
-rw-r--r--webclient/components/matrix/event-handler-service.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/components/matrix/event-handler-service.js b/webclient/components/matrix/event-handler-service.js

index a2fbad796d..ee478d2eb0 100644 --- a/webclient/components/matrix/event-handler-service.js +++ b/webclient/components/matrix/event-handler-service.js
@@ -97,7 +97,7 @@ angular.module('eventHandlerService', []) } } - $rootScope.events.rooms[event.room_id].members[event.user_id] = event; + $rootScope.events.rooms[event.room_id].members[event.state_key] = event; $rootScope.$broadcast(MEMBER_EVENT, event, isLiveEvent); };