From 80b6bc1136f8843eb37ef2369af78820f142becc Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Thu, 16 Oct 2025 21:06:54 +0200 Subject: [PATCH] Fix email filtering for tournament registrations Remove check for online registration when filtering emails to send --- tournaments/services/email_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/services/email_service.py b/tournaments/services/email_service.py index bc0cf39..13c5f48 100644 --- a/tournaments/services/email_service.py +++ b/tournaments/services/email_service.py @@ -749,7 +749,7 @@ class TournamentEmailService: for player in player_registrations: # Check both email and contact_email fields player_email = player.player_contact() - if not player_email or not player.registered_online: + if not player_email: continue if player_email in processed_emails: continue