0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-22 19:09:00 +02:00

Fix registration error when disabled

This commit is contained in:
Neil Alexander 2021-04-15 09:58:26 +01:00
parent 656d11ec90
commit a9faa1bc44
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -614,7 +614,10 @@ func handleRegistrationFlow(
} }
if cfg.RegistrationDisabled && r.Auth.Type != authtypes.LoginTypeSharedSecret { if cfg.RegistrationDisabled && r.Auth.Type != authtypes.LoginTypeSharedSecret {
return util.MessageResponse(http.StatusForbidden, "Registration has been disabled") return util.JSONResponse{
Code: http.StatusForbidden,
JSON: jsonerror.Forbidden("Registration is disabled"),
}
} }
// Make sure normal user isn't registering under an exclusive application // Make sure normal user isn't registering under an exclusive application