mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Use get to avoid KeyErrors
This commit is contained in:
parent
dad2da7e54
commit
7ed58bb347
@ -286,7 +286,7 @@ class AuthHandler(BaseHandler):
|
||||
logger.info(
|
||||
"%s reCAPTCHA from hostname %s",
|
||||
"Successful" if resp_body['success'] else "Failed",
|
||||
resp_body['hostname']
|
||||
resp_body.get('hostname')
|
||||
)
|
||||
if resp_body['success']:
|
||||
defer.returnValue(True)
|
||||
|
Loading…
Reference in New Issue
Block a user