From f6279aa7ebd5b3305bbef16c3b036af8965e28b2 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 26 Mar 2025 19:03:45 +0100 Subject: [PATCH] fix crash --- tournaments/models/tournament.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 4ea7035..612fcb7 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -838,7 +838,7 @@ class Tournament(BaseModel): return matches def elected_broadcast_group_stages(self): - group_stages = list(self.group_stages()) + group_stages = list(self.group_stages.all()) started = [gs for gs in group_stages if gs.starts_soon()] if len(started) > 0: return started