mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Fix typo in group attestation handling
This commit is contained in:
parent
f4f65ef93e
commit
9ab859f27b
2 changed files with 3 additions and 2 deletions
|
@ -835,7 +835,7 @@ class FederationGroupsRenewAttestaionServlet(BaseFederationServlet):
|
|||
def on_POST(self, origin, content, query, group_id, user_id):
|
||||
# We don't need to check auth here as we check the attestation signatures
|
||||
|
||||
new_content = yield self.handler.on_renew_group_attestation(
|
||||
new_content = yield self.handler.on_renew_attestation(
|
||||
origin, content, group_id, user_id
|
||||
)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue