From 51c8ad16c12e934d0e3489945954ef6a2dcbfc40 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 11 May 2021 20:44:58 +0200 Subject: [PATCH] Check-in: Do not ask questions on exit of venue --- src/pretix/base/services/checkin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/services/checkin.py b/src/pretix/base/services/checkin.py index 5d3e5b7caf..465e7b9d04 100644 --- a/src/pretix/base/services/checkin.py +++ b/src/pretix/base/services/checkin.py @@ -594,7 +594,7 @@ def perform_checkin(op: OrderPosition, clist: CheckinList, given_answers: dict, clist.event.questions.filter(ask_during_checkin=True, items__in=[op.item_id]) ) require_answers = [] - if checkin_questions: + if type != Checkin.TYPE_EXIT and checkin_questions: answers = {a.question: a for a in op.answers.all()} for q in checkin_questions: if q not in given_answers and q not in answers: