From f9f6ee94ae92d102a8e945dcf7b3dd397690e9e8 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 11 Feb 2026 13:11:02 +0100 Subject: [PATCH] Outgoing mails: Fix wrong filter statement (PRETIXEU-CZZ) --- src/pretix/control/forms/filter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/forms/filter.py b/src/pretix/control/forms/filter.py index 204820ac30..7b3a06ed01 100644 --- a/src/pretix/control/forms/filter.py +++ b/src/pretix/control/forms/filter.py @@ -2820,8 +2820,8 @@ class DeviceFilterForm(FilterForm): class OutgoingMailFilterForm(FilterForm): orders = { - 'date': 'd', - '-date': '-d', + 'date': 'created', + '-date': '-created', } query = forms.CharField( label=_('Search email address or subject'),