diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-07-08 17:51:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 17:51:56 +0100 |
commit | 67593b17287ae5e412c3d30db64d006d3b55349b (patch) | |
tree | 773814cef2383b03bed077e207dbabe25d843d80 /synapse/handlers/groups_local.py | |
parent | Revert "Update the installation docs on apt-transport-https (#7801)" (diff) | |
download | synapse-67593b17287ae5e412c3d30db64d006d3b55349b.tar.xz |
Add `HomeServer.signing_key` property (#7805)
... instead of duplicating `config.signing_key[0]` everywhere
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py index 7cb106e365..ecdb12a7bf 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py @@ -70,7 +70,7 @@ class GroupsLocalWorkerHandler(object): self.clock = hs.get_clock() self.keyring = hs.get_keyring() self.is_mine_id = hs.is_mine_id - self.signing_key = hs.config.signing_key[0] + self.signing_key = hs.signing_key self.server_name = hs.hostname self.notifier = hs.get_notifier() self.attestations = hs.get_groups_attestation_signing() |