forms: Call superclass clean method for CaptchaRealmCreationForm.

Ensures that the form fields set in the superclass are validated.
This commit is contained in:
Lauryn Menard
2025-09-17 17:54:33 +02:00
committed by Tim Abbott
parent 7185f2c236
commit f55c89a87f

View File

@@ -389,6 +389,7 @@ class CaptchaRealmCreationForm(RealmCreationForm):
@override
def clean(self) -> None:
super().clean()
if not self.data.get("captcha"):
self.add_error("captcha", _("Validation failed, please try again."))