Add msc4354 to /versions response

This commit is contained in:
Kegan Dougal
2025-10-02 10:46:44 +01:00
parent 15453d4e6e
commit aa45bf7c3a
2 changed files with 2 additions and 1 deletions
-1
View File
@@ -266,7 +266,6 @@ class ReplicationDataHandler:
users=[row.user_id for row in rows],
)
elif stream_name == StickyEventsStream.NAME:
print(f"STICKY_EVENTS on_rdata {token} => {rows}")
self.notifier.on_new_event(
StreamKeyType.STICKY_EVENTS,
token,
+2
View File
@@ -182,6 +182,8 @@ class VersionsRestServlet(RestServlet):
"org.matrix.msc4306": self.config.experimental.msc4306_enabled,
# MSC4169: Backwards-compatible redaction sending using `/send`
"com.beeper.msc4169": self.config.experimental.msc4169_enabled,
# MSC4354: Sticky events
"org.matrix.msc4354": self.config.experimental.msc4354_enabled,
},
},
)