diff options
author | Erik Johnston <erik@matrix.org> | 2020-12-04 15:52:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 15:52:49 +0000 |
commit | df4b1e9c74d56d79c274149b0dfb0fd5305c7659 (patch) | |
tree | dfdc8d1a66cb36975ded614070288ab47f8eee06 /synapse/state/__init__.py | |
parent | Add additional validation to pusher URLs. (#8865) (diff) | |
download | synapse-df4b1e9c74d56d79c274149b0dfb0fd5305c7659.tar.xz |
Pass room_id to get_auth_chain_difference (#8879)
This is so that we can choose which algorithm to use based on the room ID.
Diffstat (limited to 'synapse/state/__init__.py')
-rw-r--r-- | synapse/state/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/state/__init__.py b/synapse/state/__init__.py index 1fa3b280b4..84f59c7d85 100644 --- a/synapse/state/__init__.py +++ b/synapse/state/__init__.py @@ -783,7 +783,7 @@ class StateResolutionStore: ) def get_auth_chain_difference( - self, state_sets: List[Set[str]] + self, room_id: str, state_sets: List[Set[str]] ) -> Awaitable[Set[str]]: """Given sets of state events figure out the auth chain difference (as per state res v2 algorithm). @@ -796,4 +796,4 @@ class StateResolutionStore: An awaitable that resolves to a set of event IDs. """ - return self.store.get_auth_chain_difference(state_sets) + return self.store.get_auth_chain_difference(room_id, state_sets) |