diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-12 08:42:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 08:42:03 -0400 |
commit | 86cf6a3a17376dd83a9222f77521d1619b528d66 (patch) | |
tree | 3552f7be218aa0079d3a6edaddf4614566f1d25c /synapse/events/utils.py | |
parent | Add some type hints to datastore (#12423) (diff) | |
download | synapse-86cf6a3a17376dd83a9222f77521d1619b528d66.tar.xz |
Remove references to unstable identifiers from MSC3440. (#12382)
Removes references to unstable thread relation, unstable identifiers for filtering parameters, and the experimental config flag.
Diffstat (limited to 'synapse/events/utils.py')
-rw-r--r-- | synapse/events/utils.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/synapse/events/utils.py b/synapse/events/utils.py index 918e87ed9c..43c3241fb0 100644 --- a/synapse/events/utils.py +++ b/synapse/events/utils.py @@ -39,7 +39,6 @@ from . import EventBase if TYPE_CHECKING: from synapse.handlers.relations import BundledAggregations - from synapse.server import HomeServer # Split strings on "." but not "\." This uses a negative lookbehind assertion for '\' @@ -396,9 +395,6 @@ class EventClientSerializer: clients. """ - def __init__(self, hs: "HomeServer"): - self._msc3440_enabled = hs.config.experimental.msc3440_enabled - def serialize_event( self, event: Union[JsonDict, EventBase], @@ -525,8 +521,6 @@ class EventClientSerializer: "current_user_participated": thread.current_user_participated, } serialized_aggregations[RelationTypes.THREAD] = thread_summary - if self._msc3440_enabled: - serialized_aggregations[RelationTypes.UNSTABLE_THREAD] = thread_summary # Include the bundled aggregations in the event. if serialized_aggregations: |