diff options
author | Erik Johnston <erik@matrix.org> | 2017-10-11 14:44:51 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-10-11 14:45:33 +0100 |
commit | 271f5601f3eb28a16e4b0d58017b4845856ab19c (patch) | |
tree | 2e164bc25131fb242de8579c37f30eb23e16c152 /synapse/federation/transport/client.py | |
parent | Fix typo (diff) | |
download | synapse-271f5601f3eb28a16e4b0d58017b4845856ab19c.tar.xz |
Fix typo in invite to group
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 36f6eb75e9..f96561c1fe 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -572,7 +572,7 @@ class TransportLayerClient(object): return self.client.post_json( destination=destination, path=path, - args=requester_user_id, + args={"requester_user_id": requester_user_id}, data=content, ignore_backoff=True, ) |