mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 16:53:53 +01:00
Set user-visible error when the server is misconfigured.
This commit is contained in:
parent
28d8614f48
commit
2eeb8ec4fa
1 changed files with 1 additions and 0 deletions
|
@ -23,6 +23,7 @@ var setupCaptcha = function() {
|
|||
var public_key = window.matrixRegistrationConfig.recaptcha_public_key;
|
||||
if (public_key === undefined) {
|
||||
console.error("No public key defined for captcha!");
|
||||
setFeedbackString("Misconfigured captcha for server. Contact server admin.");
|
||||
return;
|
||||
}
|
||||
Recaptcha.create(public_key,
|
||||
|
|
Loading…
Reference in a new issue