diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-06-01 10:56:05 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-06-01 10:56:05 +0100 |
commit | b8d49be5a1d8719ec47a44547d043874c8bfaddc (patch) | |
tree | 52e58244f968f10176f8624eac19452d3337f810 /synapse/handlers/auth.py | |
parent | Use Twisted-15.2.1, Use Agent.usingEndpointFactory rather than implement our ... (diff) | |
parent | Merge pull request #172 from intelfx/contrib-systemd (diff) | |
download | synapse-b8d49be5a1d8719ec47a44547d043874c8bfaddc.tar.xz |
Merge branch 'develop' into markjh/twisted-15
Conflicts: synapse/python_dependencies.py
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 0cc28248a9..63071653a3 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -188,7 +188,7 @@ class AuthHandler(BaseHandler): try: client = SimpleHttpClient(self.hs) resp_body = yield client.post_urlencoded_get_json( - "https://www.google.com/recaptcha/api/siteverify", + self.hs.config.recaptcha_siteverify_api, args={ 'secret': self.hs.config.recaptcha_private_key, 'response': user_response, |