mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Fix crash when de-selecting all languages
This commit is contained in:
@@ -534,7 +534,7 @@ class EventSettingsForm(SettingsForm):
|
|||||||
|
|
||||||
def clean(self):
|
def clean(self):
|
||||||
data = super().clean()
|
data = super().clean()
|
||||||
if data['locale'] not in data['locales']:
|
if 'locales' in data and data['locale'] not in data['locales']:
|
||||||
raise ValidationError({
|
raise ValidationError({
|
||||||
'locale': _('Your default locale must also be enabled for your event (see box above).')
|
'locale': _('Your default locale must also be enabled for your event (see box above).')
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user