fix(register): 支持更多地区

This commit is contained in:
cnlimiter
2026-03-24 12:14:17 +08:00
committed by Mison
parent d8424d53af
commit 188636356a
+1 -1
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