From fd651d95f41cde786e2cb612fbb3c6195c26fce5 Mon Sep 17 00:00:00 2001 From: cnlimiter Date: Fri, 20 Mar 2026 20:57:28 +0800 Subject: [PATCH] =?UTF-8?q?fix(register):=20=E6=94=AF=E6=8C=81=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E5=9C=B0=E5=8C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/http_client.py b/src/core/http_client.py index 517dfc4..f3dd876 100644 --- a/src/core/http_client.py +++ b/src/core/http_client.py @@ -282,7 +282,7 @@ class OpenAIHTTPClient(HTTPClient): loc = loc_match.group(1) if loc_match else None # 检查是否支持 - if loc in ["CN", "HK", "MO", "TW"]: + if loc in ["CN", "HK", "MO"]: return False, loc return True, loc