From df863416779963f8c292c8a4c7b9726ac4107471 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Fri, 25 Jul 2025 02:15:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=20PlayerDataLite=20?= =?UTF-8?q?=E7=9A=84=20LastDiffToImage=20=E5=87=BD=E6=95=B0=E4=B8=AD?= =?UTF-8?q?=E5=9B=BD=E5=AE=B6=E6=8E=92=E5=90=8D=E5=B7=AE=E5=BC=82=E7=9A=84?= =?UTF-8?q?=E8=AE=A1=E7=AE=97=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/beatleader/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/beatleader/model.go b/service/beatleader/model.go index 186c2a4..628812a 100644 --- a/service/beatleader/model.go +++ b/service/beatleader/model.go @@ -543,7 +543,7 @@ func (p PlayerDataLite) LastDiffToImage(lastQueryData PlayerDataLite, onlyFirstF } // εŒΊεŸŸζŽ’ε - countryRankDiff := p.CountryRank - lastQueryData.CountryRank + countryRankDiff := lastQueryData.CountryRank - p.CountryRank if lastQueryData.CountryRank == 0 { countryRankDiff = 0 }