summary refs log tree commit diff
path: root/synapse/handlers/profile.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2023-03-08 17:05:00 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2023-03-08 17:05:00 +0000
commitcb8d9e3d75dd5d6897b562e76eb5767fbd4b78a3 (patch)
tree96bdcbb3cabbf10cdbd04f90d08eb6c6bc83e4d9 /synapse/handlers/profile.py
parentMove ThirdPartyEventRules into module_api/callbacks (diff)
downloadsynapse-github/anoa/public_rooms_module_api_backup.tar.xz
Update usages of ThirdPartyEventRules module callbacks github/anoa/public_rooms_module_api_backup anoa/public_rooms_module_api_backup
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r--synapse/handlers/profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py

index 4bf9a047a3..ae7c0701b5 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py
@@ -61,7 +61,7 @@ class ProfileHandler: self.server_name = hs.config.server.server_name - self._third_party_rules = hs.get_third_party_event_rules() + self._third_party_rules = hs.get_module_api_callbacks().third_party_event_rules async def get_profile(self, user_id: str) -> JsonDict: target_user = UserID.from_string(user_id)