禁用启用代理

This commit is contained in:
刘嘉伟 2024-09-05 10:30:47 +08:00
parent 550c552643
commit 714043c9ec

View File

@ -162,7 +162,8 @@ export const initConfigApi = win => {
serverName: "",
secretKey: m?.secretKey || "",
bindAddr: "",
bindPort: null
bindPort: null,
status: m?.status || true
};
return rm;
});
@ -184,7 +185,8 @@ export const initConfigApi = win => {
serverName: m?.serverName,
secretKey: m?.secretKey || "",
bindAddr: m?.bindAddr,
bindPort: m?.bindPort
bindPort: m?.bindPort,
status: m?.status || true
};
return rm;
});