From af90ea21a478c2f8897420632d43a4c24ca7b64a Mon Sep 17 00:00:00 2001 From: yunyaozhou Date: Sat, 8 Aug 2026 07:28:41 +0800 Subject: [PATCH] fix: expose reused binding fetch status --- sub2api_quota_tui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sub2api_quota_tui.py b/sub2api_quota_tui.py index 7223a9d..9b89591 100644 --- a/sub2api_quota_tui.py +++ b/sub2api_quota_tui.py @@ -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}"