Skip to content
Snippets Groups Projects
Unverified Commit c62dddd5 authored by GyDi's avatar GyDi
Browse files

feat: save some fields in the runtime config, close #292

parent 490ba9f1
No related branches found
No related tags found
No related merge requests found
......@@ -15,4 +15,17 @@ impl IRuntime {
pub fn new() -> Self {
Self::default()
}
// 这里只更改 allow-lan | ipv6 | log-level
pub fn patch_config(&mut self, patch: Mapping) {
if let Some(config) = self.config.as_mut() {
["allow-lan", "ipv6", "log-level"]
.into_iter()
.for_each(|key| {
if let Some(value) = patch.get(key).to_owned() {
config.insert(key.into(), value.clone());
}
});
}
}
}
......@@ -183,6 +183,8 @@ pub async fn patch_clash(patch: Mapping) -> Result<()> {
log_err!(handle::Handle::update_systray_part());
}
Config::runtime().latest().patch_config(patch);
<Result<()>>::Ok(())
} {
Ok(()) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment