Waiting list should send things out even if waiting list is disabled

This commit is contained in:
Raphael Michel
2018-10-12 10:44:21 +02:00
parent 250e0a930d
commit ddefeeaf02
3 changed files with 4 additions and 3 deletions

View File

@@ -74,5 +74,5 @@ def process_waitinglist(sender, **kwargs):
live=True
).prefetch_related('_settings_objects', 'organizer___settings_objects').select_related('organizer')
for e in qs:
if e.settings.waiting_list_enabled and e.settings.waiting_list_auto and e.presale_is_running:
if e.settings.waiting_list_auto and e.presale_is_running:
assign_automatically.apply_async(args=(e.pk,))