Compare commits

..

1 Commits

Author SHA1 Message Date
Kara Engelhardt
387948b841 Fix crash in mail_send_task for nonexistant mails 2026-03-30 14:34:54 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -19,4 +19,4 @@
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
# <https://www.gnu.org/licenses/>.
#
__version__ = "2026.3.1"
__version__ = "2026.3.0.dev0"

View File

@@ -1122,7 +1122,7 @@ class CheckinViewSet(viewsets.ReadOnlyModelViewSet):
permission = 'event.orders:read'
def get_queryset(self):
qs = Checkin.all.filter(list__event=self.request.event).select_related(
qs = Checkin.all.filter().select_related(
"position",
"device",
)