From 49e60700b0797c0d1831fd6627112b53af26158e Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Wed, 13 May 2026 10:26:24 +0200 Subject: [PATCH] Fix typo --- src/pretix/api/views/checkin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/api/views/checkin.py b/src/pretix/api/views/checkin.py index 45adbb8497..0de7385e88 100644 --- a/src/pretix/api/views/checkin.py +++ b/src/pretix/api/views/checkin.py @@ -736,7 +736,7 @@ def _redeem_process(*, checkinlists, raw_barcode, answers_data, datetime, force, for op in op_candidates: if ( op.valid_until and op.valid_until < now_dt and - (not op_candidate or op.valid_from > op_candidate.valid_from) + (not op_candidate or op.valid_until > op_candidate.valid_until) ): op_candidate = op