mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 05:03:45 +08:00
feat: check remote profile field
This commit is contained in:
parent
60af0735f4
commit
10c7e75491
@ -282,8 +282,11 @@ impl PrfItem {
|
|||||||
let data = resp.text_with_charset("utf-8").await?;
|
let data = resp.text_with_charset("utf-8").await?;
|
||||||
|
|
||||||
// check the data whether the valid yaml format
|
// check the data whether the valid yaml format
|
||||||
if !serde_yaml::from_str::<Mapping>(&data).is_ok() {
|
let yaml = serde_yaml::from_str::<Mapping>(&data) //
|
||||||
bail!("the remote profile data is invalid yaml");
|
.context("the remote profile data is invalid yaml")?;
|
||||||
|
|
||||||
|
if !yaml.contains_key("proxies") || !yaml.contains_key("proxy-providers") {
|
||||||
|
bail!("profile does not contain `proxies` or `proxy-providers`");
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(PrfItem {
|
Ok(PrfItem {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user