mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 09:33:53 +01:00
Make sure the config actually /has/ a captcha_bypass_secret set before trying to compare it
This commit is contained in:
parent
3a8a94448a
commit
5f16439752
1 changed files with 3 additions and 2 deletions
|
@ -153,7 +153,8 @@ class RegisterRestServlet(RestServlet):
|
|||
@defer.inlineCallbacks
|
||||
def _check_recaptcha(self, request, register_json):
|
||||
if "captcha_bypass_secret" in register_json:
|
||||
if (register_json["captcha_bypass_secret"] ==
|
||||
if (self.hs.config.captcha_bypass_secret is not None and
|
||||
register_json["captcha_bypass_secret"] ==
|
||||
self.hs.config.captcha_bypass_secret):
|
||||
defer.returnValue(None)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue