拆分 OAuth 后置验证流程

This commit is contained in:
QLHazyCoder
2026-05-15 23:03:02 +08:00
parent 4c2ab31b07
commit 3f3f9275cc
26 changed files with 1578 additions and 584 deletions
+1 -1
View File
@@ -1251,7 +1251,7 @@
}
const data = await response.json();
if (data?.status !== 'ok') {
throw new Error(data?.message || data?.status || 'unknown response');
throw new Error(data?.message || data?.status || '未知响应');
}
return buildDirectAddressSeed(countryCode, data.address || {}, fallbackSeed);
}