GyDi il y a 2 ans
Parent
commit
e00f826eb8
2 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 0 1
      src-tauri/src/cmds.rs
  2. 1 0
      src-tauri/src/core/core.rs

+ 0 - 1
src-tauri/src/cmds.rs

@@ -24,7 +24,6 @@ pub async fn enhance_profiles() -> CmdResult {
     Ok(())
 }
 
-#[deprecated]
 #[tauri::command]
 pub async fn import_profile(url: String, option: Option<PrfOption>) -> CmdResult {
     let item = wrap_err!(PrfItem::from_url(&url, None, None, option).await)?;

+ 1 - 0
src-tauri/src/core/core.rs

@@ -79,6 +79,7 @@ impl CoreManager {
     pub async fn run_core(&self) -> Result<()> {
         let config_path = Config::generate_file(ConfigType::Run)?;
 
+        #[allow(unused_mut)]
         let mut should_kill = match self.sidecar.lock().take() {
             Some(child) => {
                 log::debug!(target: "app", "stop the core by sidecar");