mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 06:14:56 -04:00
Do not recurse into non-spaces in the spaces summary. (#10256)
Previously m.child.room events in non-space rooms would be treated as part of the room graph, but this is no longer supported.
This commit is contained in:
parent
7647b0337f
commit
f55836929d
5 changed files with 43 additions and 26 deletions
|
@ -201,6 +201,12 @@ class EventContentFields:
|
|||
)
|
||||
|
||||
|
||||
class RoomTypes:
|
||||
"""Understood values of the room_type field of m.room.create events."""
|
||||
|
||||
SPACE = "m.space"
|
||||
|
||||
|
||||
class RoomEncryptionAlgorithms:
|
||||
MEGOLM_V1_AES_SHA2 = "m.megolm.v1.aes-sha2"
|
||||
DEFAULT = MEGOLM_V1_AES_SHA2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue