fix(register): 支持更多地区

This commit is contained in:
cnlimiter
2026-03-20 20:57:28 +08:00
parent 62c983b9a4
commit fd651d95f4

View File

@@ -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