File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313- Endpoints for getting player 170 statistics
1414- Ensure that currenet player is set correctly on tournament playoffs
1515- Don't include legs that hit max rounds as highest checkout
16+ - Exclude bye matches from all matches overview page
1617
1718## [ 2.9.0] - 2025-04-06
1819#### Feature
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ func GetMatches() ([]*models.Match, error) {
190190// GetMatchesCount returns count of all matches
191191func GetMatchesCount () (int , error ) {
192192 var count int
193- err := models .DB .QueryRow (`SELECT count(m.id) FROM matches m WHERE m.created_at <= NOW()` ).Scan (& count )
193+ err := models .DB .QueryRow (`SELECT count(m.id) FROM matches m WHERE m.created_at <= NOW() AND is_bye = 0 ` ).Scan (& count )
194194 if err != nil {
195195 return - 1 , err
196196 }
You can’t perform that action at this time.
0 commit comments