diff options
author | Eric Eastwood <erice@element.io> | 2021-10-05 11:51:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 11:51:57 -0500 |
commit | 392863fbf1ee31f8a1997446ab31919a7b6d9a14 (patch) | |
tree | 3ebf2b6ba77da1ce73f5b29d8150121f39b44e77 /synapse | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-392863fbf1ee31f8a1997446ab31919a7b6d9a14.tar.xz |
Fix logic flaw preventing tracking of MSC2716 events in existing room versions (#10962)
We correctly allowed using the MSC2716 batch endpoint for the room creator in existing room versions but accidentally didn't track the events because of a logic flaw. This prevented you from connecting subsequent chunks together because it would throw the unknown batch ID error. We only want to process MSC2716 events when: - The room version supports MSC2716 - Any room where the homeserver has the `msc2716_enabled` experimental feature enabled and the event is from the room creator
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/federation_event.py | 5 | ||||
-rw-r--r-- | synapse/storage/databases/main/events.py | 10 |
2 files changed, 6 insertions, 9 deletions
diff --git a/synapse/handlers/federation_event.py b/synapse/handlers/federation_event.py |