From 55e19d633a5a8451b5572b34b65a854668219c8c Mon Sep 17 00:00:00 2001 From: xingc Date: Fri, 12 Dec 2025 17:35:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(card):=20=E4=BF=AE=E5=A4=8D`bgs`=E5=8D=A1?= =?UTF-8?q?=E7=89=87`auto=5Fscore`=E5=AD=97=E6=AE=B5=E5=80=BC`Not=20Availa?= =?UTF-8?q?ble`=E5=AF=BC=E8=87=B4=E5=93=8D=E5=BA=94=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/routers/card/scraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/routers/card/scraper.py b/core/routers/card/scraper.py index 272b420..ebf41a2 100644 --- a/core/routers/card/scraper.py +++ b/core/routers/card/scraper.py @@ -304,7 +304,7 @@ class CardScraper: item['card_score'] = result.get('final_grade') # 签字评分 auto_score = result.get('autograph_grade') - item['auto_score'] = auto_score if auto_score != '0.0' else None + item['auto_score'] = auto_score if auto_score != '0.0' and auto_score != 'Not Available' else None # 卡片名称 item['card_name'] = result.get('player_name') # 卡片编号 无