mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-21 09:58:46 -04:00
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
This commit is contained in:
parent
2faac70e63
commit
392863fbf1
3 changed files with 7 additions and 9 deletions
|
@ -1763,9 +1763,8 @@ class PersistEventsStore:
|
|||
retcol="creator",
|
||||
allow_none=True,
|
||||
)
|
||||
if (
|
||||
not room_version.msc2716_historical
|
||||
or not self.hs.config.experimental.msc2716_enabled
|
||||
if not room_version.msc2716_historical and (
|
||||
not self.hs.config.experimental.msc2716_enabled
|
||||
or event.sender != room_creator
|
||||
):
|
||||
return
|
||||
|
@ -1825,9 +1824,8 @@ class PersistEventsStore:
|
|||
retcol="creator",
|
||||
allow_none=True,
|
||||
)
|
||||
if (
|
||||
not room_version.msc2716_historical
|
||||
or not self.hs.config.experimental.msc2716_enabled
|
||||
if not room_version.msc2716_historical and (
|
||||
not self.hs.config.experimental.msc2716_enabled
|
||||
or event.sender != room_creator
|
||||
):
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue