From 8ca128912ebc1132de5ba1f8b04e38d901a37a92 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 25 Jan 2023 11:17:03 +0100 Subject: [PATCH] Fix TypeError in failing bulk-checkin-action --- src/pretix/control/views/checkin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/views/checkin.py b/src/pretix/control/views/checkin.py index 38d6509d8..465a127c0 100644 --- a/src/pretix/control/views/checkin.py +++ b/src/pretix/control/views/checkin.py @@ -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):