fix: expose reused binding fetch status

This commit is contained in:
2026-08-08 07:28:41 +08:00
parent be1c321cd8
commit af90ea21a4
+1 -1
View File
@@ -1998,7 +1998,7 @@ def account_pricing_fetch_label(
status = str(account.get("pricing_fetch_status") or "").strip()
if fetched == "-":
return str(pricing_source.get("updated") or "-") if pricing_source else (status or "-")
if status in {"", "matched", "reused_primary", "ok"}:
if status in {"", "matched", "ok"}:
return fetched
return f"{fetched} {status}"