Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 82a5c9f

Browse files
committed
fix config options
1 parent 931249d commit 82a5c9f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

synapse/config/experimental.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,18 +247,16 @@ def read_config(self, config: JsonDict, **kwargs: Any) -> None:
247247
# MSC3026 (busy presence state)
248248
self.msc3026_enabled: bool = experimental.get("msc3026_enabled", False)
249249

250-
# MSC2716 (importing historical messages)
251-
self.msc2716_enabled: bool = experimental.get("msc2716_enabled", False)
252-
253-
# MSC2285 (unstable private read receipts)
254-
self.msc2285_enabled: bool = experimental.get("msc2285_enabled", False)
255-
256250
# MSC2697 (device dehydration)
257251
# Enabled by default since this option was added after adding the feature.
252+
# It is not recommended that both MSC2697 and MSC3814 both be enabled at
253+
# once.
258254
self.msc2697_enabled: bool = experimental.get("msc2697_enabled", True)
259255

260256
# MSC3814 (dehydrated devices with SSSS)
261257
# This is an alternative method to achieve the same goals as MSC2697.
258+
# It is not recommended that both MSC2697 and MSC3814 both be enabled at
259+
# once.
262260
self.msc3814_enabled: bool = experimental.get("msc3814_enabled", False)
263261

264262
# MSC3244 (room version capabilities)

0 commit comments

Comments
 (0)