From 9f7faadd83cea56419ec331aa7c44789ede5d999 Mon Sep 17 00:00:00 2001 From: itzaname Date: Fri, 4 Jul 2025 19:32:54 -0400 Subject: [PATCH] Add missing state_id filter in rank call --- pkg/api/handlers/user.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/api/handlers/user.go b/pkg/api/handlers/user.go index 1271a6a..1f1ce26 100644 --- a/pkg/api/handlers/user.go +++ b/pkg/api/handlers/user.go @@ -118,6 +118,7 @@ func (h *UserHandler) GetRank(ctx *gin.Context) { StyleID: filter.StyleID, GameID: filter.GameID, ModeID: filter.ModeID, + StateID: []int32{0, 1}, }) if err != nil { statusCode := http.StatusInternalServerError -- 2.49.1