diff options
author | Eric Eastwood <erice@element.io> | 2022-04-04 14:54:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 14:54:50 -0500 |
commit | 9633eb2162017009ef7307034d179e1dc23d1e85 (patch) | |
tree | 9f2d74371c1c2594d0de72d755221ede2a2b4fd1 /changelog.d | |
parent | Prefill the device_list_stream_cache (#12367) (diff) | |
download | synapse-9633eb2162017009ef7307034d179e1dc23d1e85.tar.xz |
Allow non-member state sent in room batch to resolve for historic events (MSC2716) (#12329)
Part of https://github.com/matrix-org/synapse/issues/12110 Complement test: https://github.com/matrix-org/complement/pull/354 Previously, they didn't resolve because async `filter_events_for_client` removes all outlier state except for out-of-band membership. And fundamentally, we have the state at these events so they shouldn't be marked as outliers.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12329.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12329.bugfix b/changelog.d/12329.bugfix new file mode 100644 index 0000000000..aef4117343 --- /dev/null +++ b/changelog.d/12329.bugfix @@ -0,0 +1 @@ +Fix non-member state events not resolving for historical events when used in [MSC2716](https://github.com/matrix-org/matrix-spec-proposals/pull/2716) `/batch_send` `state_events_at_start`. |