fix: improve external-controller parse and log

This commit is contained in:
GyDi
2022-06-20 01:36:56 +08:00
parent 2f1ea08b8a
commit 6d0625c409
2 changed files with 14 additions and 9 deletions

View File

@@ -139,7 +139,11 @@ impl Service {
config::save_yaml(temp_path.clone(), &config, Some("# Clash Verge Temp File"))?;
if info.server.is_none() {
bail!("failed to parse the server");
if info.port.is_none() {
bail!("failed to parse config.yaml file");
} else {
bail!("failed to parse the server");
}
}
let server = info.server.unwrap();