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

Fix that states is a dict of dicts

This commit is contained in:
Erik Johnston 2018-05-22 19:00:48 +01:00
parent cb2a2ad791
commit 586b66b197

View file

@ -853,10 +853,13 @@ class FederationHandler(BaseHandler):
[resolve(room_id, [e]) for e in event_ids],
consumeErrors=True,
))
# dict[str, dict[tuple, str]], a map from event_id to state map of
# event_ids.
states = dict(zip(event_ids, [s.state for s in states]))
state_map = yield self.store.get_events(
[e_id for ids in states.values() for e_id in ids],
[e_id for ids in states.values() for e_id in ids.itervalues()],
get_prev_content=False
)
states = {