Always enable profile replication endpoints

Since we moved a lot of stuff to happen in the profile update stream writers, we need to always have the replication endpoints enabled now.
This commit is contained in:
Jason Robinson
2026-07-08 17:16:47 +03:00
parent fcac74620f
commit 8e75e7b21d
+4 -5
View File
@@ -260,8 +260,7 @@ class ReplicationProfileDeleteUponDeactivation(ReplicationEndpoint):
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
if hs.config.server.include_profile_updates_in_sync:
ReplicationProfileUserRoomMembershipChange(hs).register(http_server)
ReplicationProfileSetField(hs).register(http_server)
ReplicationProfileDeleteField(hs).register(http_server)
ReplicationProfileDeleteUponDeactivation(hs).register(http_server)
ReplicationProfileUserRoomMembershipChange(hs).register(http_server)
ReplicationProfileSetField(hs).register(http_server)
ReplicationProfileDeleteField(hs).register(http_server)
ReplicationProfileDeleteUponDeactivation(hs).register(http_server)