mirror of
https://github.com/matrix-org/synapse.git
synced 2026-05-07 13:16:21 +02:00
Config values are almost never 'None', but they might be empty string. Detect their presence by truth
This commit is contained in:
parent
5f16439752
commit
537c7e1137
@ -153,7 +153,7 @@ class RegisterRestServlet(RestServlet):
|
||||
@defer.inlineCallbacks
|
||||
def _check_recaptcha(self, request, register_json):
|
||||
if "captcha_bypass_secret" in register_json:
|
||||
if (self.hs.config.captcha_bypass_secret is not None and
|
||||
if (self.hs.config.captcha_bypass_secret and
|
||||
register_json["captcha_bypass_secret"] ==
|
||||
self.hs.config.captcha_bypass_secret):
|
||||
defer.returnValue(None)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user