mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:26:09 -04:00
Fix application of ACLs
This commit is contained in:
parent
10b874067b
commit
1b994a97dd
4 changed files with 33 additions and 17 deletions
|
@ -239,10 +239,10 @@ class StateStore(SQLBaseStore):
|
|||
for event_id, group in event_to_groups.items()
|
||||
}
|
||||
|
||||
defer.returnValue([
|
||||
event_to_state[event]
|
||||
defer.returnValue({
|
||||
event: event_to_state[event]
|
||||
for event in event_ids
|
||||
])
|
||||
})
|
||||
|
||||
@cached(num_args=2, lru=True, max_entries=100000)
|
||||
def _get_state_group_for_event(self, room_id, event_id):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue