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

fix: result

parent f260d5df
No related branches found
No related tags found
No related merge requests found
...@@ -301,6 +301,9 @@ impl Clash { ...@@ -301,6 +301,9 @@ impl Clash {
let info = self.info.clone(); let info = self.info.clone();
let mut config = self.config.clone(); let mut config = self.config.clone();
// generate the payload
let payload = profiles.gen_enhanced()?;
win.once(&event_name, move |event| { win.once(&event_name, move |event| {
if let Some(result) = event.payload() { if let Some(result) = event.payload() {
let gen_map: Mapping = serde_json::from_str(result).unwrap(); let gen_map: Mapping = serde_json::from_str(result).unwrap();
...@@ -312,9 +315,6 @@ impl Clash { ...@@ -312,9 +315,6 @@ impl Clash {
} }
}); });
// generate the payload
let payload = profiles.gen_enhanced();
tauri::async_runtime::spawn(async move { tauri::async_runtime::spawn(async move {
sleep(Duration::from_secs(5)).await; sleep(Duration::from_secs(5)).await;
win.emit("script-handler", payload).unwrap(); win.emit("script-handler", payload).unwrap();
......
...@@ -438,8 +438,8 @@ impl Profiles { ...@@ -438,8 +438,8 @@ impl Profiles {
} }
/// gen the enhanced profiles /// gen the enhanced profiles
pub fn gen_enhanced(&self) -> PrfEnhanced { pub fn gen_enhanced(&self) -> Result<PrfEnhanced> {
let current = self.gen_activate().unwrap(); let current = self.gen_activate()?;
let chain = match self.chain.as_ref() { let chain = match self.chain.as_ref() {
Some(chain) => chain Some(chain) => chain
...@@ -454,7 +454,7 @@ impl Profiles { ...@@ -454,7 +454,7 @@ impl Profiles {
None => vec![], None => vec![],
}; };
PrfEnhanced { current, chain } Ok(PrfEnhanced { current, chain })
} }
} }
......
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