diff --git a/tournaments/models/match.py b/tournaments/models/match.py index 8a9e780..3419966 100644 --- a/tournaments/models/match.py +++ b/tournaments/models/match.py @@ -288,8 +288,7 @@ class LiveMatch: return True def should_show_scores(self): - if self.started: - for team in self.teams: - if len(team.scores) > 0: - return True + for team in self.teams: + if len(team.scores) > 0: + return True return False