diff options
author | Erik Johnston <erik@matrix.org> | 2022-11-17 16:28:56 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2022-11-17 16:28:56 +0000 |
commit | fc65cd98a60d3e23653551de093ec0053dff7ca3 (patch) | |
tree | 622bf701d64cdf2b618b307bbf8aa1438e17c259 | |
parent | Implement closure of conflicted state events (diff) | |
download | synapse-erikj/state_res_v2.1_clousre.tar.xz |
-rw-r--r-- | synapse/state/v2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state/v2.py b/synapse/state/v2.py index e15cfbd4b3..3353b55e30 100644 --- a/synapse/state/v2.py +++ b/synapse/state/v2.py @@ -387,7 +387,7 @@ async def _get_auth_chain_difference( if not auth_chain: continue - conflicted_boundary != auth_chain & boundary + conflicted_boundary |= auth_chain & boundary else: auth_difference_unpersisted_part = () |