Rejig the code to make it nicer

pull/228/head
Erik Johnston 2015-08-18 16:26:07 +01:00
parent 8199475ce0
commit 0bfdaf1f4f
1 changed files with 2 additions and 3 deletions

View File

@ -398,6 +398,7 @@ class StateStore(SQLBaseStore):
# for them again.
state_dict = {key: None for key in types}
state_dict.update(results[group])
results[group] = state_dict
else:
state_dict = results[group]
@ -405,12 +406,10 @@ class StateStore(SQLBaseStore):
state_event = state_events[event_id]
state_dict[(state_event.type, state_event.state_key)] = state_event
results[group] = state_dict
self._state_group_cache.update(
cache_seq_num,
key=group,
value=results[group],
value=state_dict,
full=(types is None),
)