diff --git a/src/pretix/presale/forms/checkout.py b/src/pretix/presale/forms/checkout.py index 4b41e3737..2b5d87607 100644 --- a/src/pretix/presale/forms/checkout.py +++ b/src/pretix/presale/forms/checkout.py @@ -50,7 +50,7 @@ class ContactForm(forms.Form): def clean(self): if self.event.settings.order_email_asked_twice: - if self.cleaned_data.get('email') != self.cleaned_data.get('email_repeat'): + if self.cleaned_data.get('email').lower() != self.cleaned_data.get('email_repeat').lower(): raise ValidationError(_('Please enter the same email address twice.'))