0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-03 03:09:02 +02:00

Config values are almost never 'None', but they might be empty string. Detect their presence by truth

This commit is contained in:
Paul "LeoNerd" Evans 2014-09-23 15:18:59 +01:00
parent 5f16439752
commit 537c7e1137

View file

@ -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)