fix: 修复oai代理密码保存问题

This commit is contained in:
shaw
2025-09-18 19:47:09 +08:00
parent e9559eec6b
commit 6e98c46371

View File

@@ -671,10 +671,6 @@ async function getAllAccounts() {
if (accountData.proxy) {
try {
accountData.proxy = JSON.parse(accountData.proxy)
// 屏蔽代理密码
if (accountData.proxy && accountData.proxy.password) {
accountData.proxy.password = '******'
}
} catch (e) {
// 如果解析失败设置为null
accountData.proxy = null