Fix TypeError in failing bulk-checkin-action

This commit is contained in:
Raphael Michel
2023-01-25 11:17:03 +01:00
parent b9d8429da8
commit 8ca128912e

View File

@@ -252,7 +252,7 @@ class CheckInListBulkActionView(CheckInListQueryMixin, EventPermissionRequiredMi
'event': self.request.event.slug,
'organizer': self.request.event.organizer.slug,
'list': self.list.pk
}) + ('?' + value[1] if value[1] else '')
}) + ('?' + value[1] if value and value[1] else '')
class CheckinListList(EventPermissionRequiredMixin, PaginationMixin, ListView):