diff options
author | Erik Johnston <erik@matrix.org> | 2017-10-19 11:23:05 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-10-19 11:23:05 +0100 |
commit | d747db1357a29ab61d3558ac579d519c8714bf54 (patch) | |
tree | e2eccb2b6b6c5df8141f8447b0b009fdc6221e47 | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff) | |
parent | Fix typo (diff) | |
download | synapse-d747db1357a29ab61d3558ac579d519c8714bf54.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
-rw-r--r-- | synapse/federation/transport/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transport/server.py b/synapse/federation/transport/server.py index 09b97138c3..f0778c65c5 100644 --- a/synapse/federation/transport/server.py +++ b/synapse/federation/transport/server.py @@ -836,7 +836,7 @@ class FederationGroupsRenewAttestaionServlet(BaseFederationServlet): # We don't need to check auth here as we check the attestation signatures new_content = yield self.handler.on_renew_attestation( - origin, content, group_id, user_id + group_id, user_id, content ) defer.returnValue((200, new_content)) |