diff options
author | Erik Johnston <erik@matrix.org> | 2017-08-25 14:34:56 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-08-25 14:34:56 +0100 |
commit | bf81f3cf2c3e5b1d96953f3116c22aee05fb79b3 (patch) | |
tree | a87f982bf6763c263d45db6fcbef6cb9813d9015 /synapse/handlers/groups_local.py | |
parent | Add remote profile cache (diff) | |
download | synapse-bf81f3cf2c3e5b1d96953f3116c22aee05fb79b3.tar.xz |
Split out profile handler to fix tests
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py index bfa10bde5a..1950c12f1f 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py @@ -56,8 +56,7 @@ class GroupsLocalHandler(object): self.notifier = hs.get_notifier() self.attestations = hs.get_groups_attestation_signing() - handlers = hs.get_handlers() - self.profile_handler = handlers.profile_handler + self.profile_handler = hs.get_profile_handler() # Ensure attestations get renewed hs.get_groups_attestation_renewer() |