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