diff options
author | Erik Johnston <erik@matrix.org> | 2017-02-13 13:50:03 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-02-13 13:50:03 +0000 |
commit | 9e617cd4c2da527caf93799e286b42352ad492d2 (patch) | |
tree | f704af83069af931659657a88ebaba6ac7cf6de8 /synapse/handlers/presence.py | |
parent | Merge pull request #1912 from matrix-org/markjh/roominitialsync (diff) | |
download | synapse-9e617cd4c2da527caf93799e286b42352ad492d2.tar.xz |
Cache get_presence storage
Diffstat (limited to 'synapse/handlers/presence.py')
-rw-r--r-- | synapse/handlers/presence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py index fdfce2a88c..da610e430f 100644 --- a/synapse/handlers/presence.py +++ b/synapse/handlers/presence.py @@ -531,7 +531,7 @@ class PresenceHandler(object): # There are things not in our in memory cache. Lets pull them out of # the database. res = yield self.store.get_presence_for_users(missing) - states.update({state.user_id: state for state in res}) + states.update(res) missing = [user_id for user_id, state in states.items() if not state] if missing: |