diff options
author | Erik Johnston <erik@matrix.org> | 2017-10-19 10:55:44 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-10-19 10:55:52 +0100 |
commit | 9ab859f27b177bbcd4fe0b3eb1bef0ce649ea41e (patch) | |
tree | 28c15c06d4ca4e19c2fc9b83e9e141597652d2cc /synapse/groups | |
parent | Merge pull request #2557 from matrix-org/erikj/media_tumbnails (diff) | |
download | synapse-9ab859f27b177bbcd4fe0b3eb1bef0ce649ea41e.tar.xz |
Fix typo in group attestation handling
Diffstat (limited to 'synapse/groups')
-rw-r--r-- | synapse/groups/attestations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/groups/attestations.py b/synapse/groups/attestations.py index 02e2e17589..b751cf5e43 100644 --- a/synapse/groups/attestations.py +++ b/synapse/groups/attestations.py @@ -90,6 +90,7 @@ class GroupAttestionRenewer(object): self.assestations = hs.get_groups_attestation_signing() self.transport_client = hs.get_federation_transport_client() self.is_mine_id = hs.is_mine_id + self.attestations = hs.get_groups_attestation_signing() self._renew_attestations_loop = self.clock.looping_call( self._renew_attestations, 30 * 60 * 1000, @@ -129,7 +130,7 @@ class GroupAttestionRenewer(object): def _renew_attestation(group_id, user_id): attestation = self.attestations.create_attestation(group_id, user_id) - if self.hs.is_mine_id(group_id): + if self.is_mine_id(group_id): destination = get_domain_from_id(user_id) else: destination = get_domain_from_id(group_id) |