aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/handlers/map.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/handlers/map.go b/backend/handlers/map.go
index 8b8b9d7..f985a23 100644
--- a/backend/handlers/map.go
+++ b/backend/handlers/map.go
@@ -166,7 +166,7 @@ func FetchMapLeaderboards(c *gin.Context) {
166 return 166 return
167 } 167 }
168 response.Map.ID = intID 168 response.Map.ID = intID
169 sql := `SELECT g.name, c.name, m.name, is_disabled, m.image, g.is_coop 169 sql := `SELECT g.name, c.name, m.name, m.is_disabled, m.image, g.is_coop
170 FROM maps m 170 FROM maps m
171 INNER JOIN games g ON m.game_id = g.id 171 INNER JOIN games g ON m.game_id = g.id
172 INNER JOIN chapters c ON m.chapter_id = c.id 172 INNER JOIN chapters c ON m.chapter_id = c.id