From f151d08473edf8eb86d0d446314cf034d3d143bb Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Sat, 8 Mar 2025 19:58:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=20BeatLeader=20?= =?UTF-8?q?=E6=9C=80=E8=BF=91=E6=88=90=E7=BB=A9=E8=8E=B7=E5=8F=96=E7=9A=84?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/beatleader/bind_bl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/beatleader/bind_bl.go b/service/beatleader/bind_bl.go index 2b8d1ed..7a900a6 100644 --- a/service/beatleader/bind_bl.go +++ b/service/beatleader/bind_bl.go @@ -324,7 +324,7 @@ func (bl *blQuery) GetRecentScores(count int, qqId string) ([]RecordDataLite, er return nil, err } //从线上获取 - historyUrl := "https://api.beatleader.xyz/player/%s/scores?count=%d" + historyUrl := "https://api.beatleader.xyz/player/%s/scores?count=%d&sortBy=date&order=desc" fullUrl := fmt.Sprintf(historyUrl, blId, count) resp, err := http.Get(fullUrl) if err != nil {