diff options
author | Eric Eastwood <erice@element.io> | 2021-12-16 11:25:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-16 11:25:37 -0600 |
commit | 43f5cc7adc02a05ba4075b8aab3b479bda67f441 (patch) | |
tree | 2eb16c74945745fe44923195971c495287db1c09 /synapse/config/experimental.py | |
parent | Add type hints to `synapse/storage/databases/main/room.py` (#11575) (diff) | |
download | synapse-43f5cc7adc02a05ba4075b8aab3b479bda67f441.tar.xz |
Add MSC2716 and MSC3030 to `/versions` -> `unstable_features` (#11582)
As suggested in https://github.com/matrix-org/matrix-react-sdk/pull/7372#discussion_r769523369
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r-- | synapse/config/experimental.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 678c78d565..dbaeb10918 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -32,7 +32,7 @@ class ExperimentalConfig(Config): # MSC3026 (busy presence state) self.msc3026_enabled: bool = experimental.get("msc3026_enabled", False) - # MSC2716 (backfill existing history) + # MSC2716 (importing historical messages) self.msc2716_enabled: bool = experimental.get("msc2716_enabled", False) # MSC2285 (hidden read receipts) |