fix: unlock test error message to "Unsupported Country/Region"

This commit is contained in:
Tunglies
2025-04-10 11:30:52 +08:00
parent 84fbccbfd9
commit 843f40d7d5
5 changed files with 5 additions and 5 deletions

View File

@@ -207,7 +207,7 @@ async fn check_chatgpt_combined(client: &Client) -> Vec<UnlockItem> {
if let Ok(body) = response.text().await {
let body_lower = body.to_lowercase();
if body_lower.contains("unsupported_country") {
"Unsupported Country"
"Unsupported Country/Region"
} else {
"Yes"
}